W3cubDocs

/Drupal 8

function node_form_system_themes_admin_form_submit

node_form_system_themes_admin_form_submit($form, FormStateInterface $form_state)

Form submission handler for system_themes_admin_form().

See also

node_form_system_themes_admin_form_alter()

File

core/modules/node/node.module, line 843
The core module that allows content to be submitted to the site.

Code

function node_form_system_themes_admin_form_submit($form, FormStateInterface $form_state) {
  \Drupal::configFactory()->getEditable('node.settings')
    ->set('use_admin_theme', $form_state->getValue('use_admin_theme'))
    ->save();
  \Drupal::service('router.builder')->setRebuildNeeded();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!node!node.module/function/node_form_system_themes_admin_form_submit/8.1.x