admin_form_system_admin_theme_settings_alter(&$form)Implementation of hook_form_alter() for system_admin_theme_settings.
contrib-6/admin/admin.module, line 137
<?php
function admin_form_system_admin_theme_settings_alter(&$form) {
// Add in our stealth theme as an option
$form['admin_theme']['#options']['admin'] = t('Admin');
}
?>