You are here

function admin_form_system_admin_theme_settings_alter in Admin 6

Implementation of hook_form_alter() for system_admin_theme_settings.

File

./admin.admin.inc, line 155

Code

function admin_form_system_admin_theme_settings_alter(&$form) {

  // Add in our admin theme ('slate') as an option
  $form['admin_theme']['#options']['slate'] = t('Slate (formerly \'Admin\')');
}