function system_themes_admin_form_submit

Process system_themes_admin_form form submissions.

File

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

Code

function system_themes_admin_form_submit($form, &$form_state) {
  drupal_set_message(t('The configuration options have been saved.'));
  config('system.theme')
    ->set('admin', $form_state['values']['admin_theme'])
    ->save();
}