function system_theme

Same name in other branches
  1. 9 core/modules/system/system.module \system_theme()
  2. 8.9.x core/modules/system/system.module \system_theme()
  3. 10 core/modules/system/system.module \system_theme()
  4. 11.x core/modules/system/system.module \system_theme()

Implements hook_theme().

File

modules/system/system.module, line 159

Code

function system_theme() {
    return array_merge(drupal_common_theme(), array(
        'system_themes_page' => array(
            'variables' => array(
                'theme_groups' => NULL,
            ),
            'file' => 'system.admin.inc',
        ),
        'system_settings_form' => array(
            'render element' => 'form',
        ),
        'confirm_form' => array(
            'render element' => 'form',
        ),
        'system_modules_fieldset' => array(
            'render element' => 'form',
            'file' => 'system.admin.inc',
        ),
        'system_modules_incompatible' => array(
            'variables' => array(
                'message' => NULL,
            ),
            'file' => 'system.admin.inc',
        ),
        'system_modules_uninstall' => array(
            'render element' => 'form',
            'file' => 'system.admin.inc',
        ),
        'status_report' => array(
            'render element' => 'requirements',
            'file' => 'system.admin.inc',
        ),
        'admin_page' => array(
            'variables' => array(
                'blocks' => NULL,
            ),
            'file' => 'system.admin.inc',
        ),
        'admin_block' => array(
            'variables' => array(
                'block' => NULL,
            ),
            'file' => 'system.admin.inc',
        ),
        'admin_block_content' => array(
            'variables' => array(
                'content' => NULL,
            ),
            'file' => 'system.admin.inc',
        ),
        'system_admin_index' => array(
            'variables' => array(
                'menu_items' => NULL,
            ),
            'file' => 'system.admin.inc',
        ),
        'system_powered_by' => array(
            'variables' => array(),
        ),
        'system_compact_link' => array(
            'variables' => array(),
        ),
        'system_date_time_settings' => array(
            'render element' => 'form',
            'file' => 'system.admin.inc',
        ),
    ));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.