function node_form_system_site_information_settings_form_submit

Form submission handler for system_site_information_settings().

See also

node_form_system_site_information_settings_form_alter()

1 string reference to 'node_form_system_site_information_settings_form_submit'

File

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

Code

function node_form_system_site_information_settings_form_submit($form, &$form_state) {
  config('node.settings')
    ->set('items_per_page', $form_state['values']['default_nodes_main'])
    ->save();
}