function system_themes_admin_form

Form to select the administration theme.

See also

system_themes_admin_form_submit()

Related topics

1 string reference to 'system_themes_admin_form'
system_themes_page in drupal/core/modules/system/system.admin.inc
Menu callback; displays a listing of all themes.

File

drupal/core/modules/system/system.admin.inc, line 249
Admin page callbacks for the system module.

Code

function system_themes_admin_form($form, &$form_state, $theme_options) {

  // Administration theme settings.
  $form['admin_theme'] = array(
    '#type' => 'details',
    '#title' => t('Administration theme'),
  );
  $form['admin_theme']['admin_theme'] = array(
    '#type' => 'select',
    '#options' => array(
      0 => t('Default theme'),
    ) + $theme_options,
    '#title' => t('Administration theme'),
    '#description' => t('Choose "Default theme" to always use the same theme as the rest of the site.'),
    '#default_value' => variable_get('admin_theme', 0),
  );
  $form['admin_theme']['actions'] = array(
    '#type' => 'actions',
  );
  $form['admin_theme']['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save configuration'),
  );
  return $form;
}