You are here

function config_pages_type_form_submit in Config Pages 7

Form API submit callback for the type form.

File

./config_pages.type.admin.inc, line 114
ConfigPages type editing UI.

Code

function config_pages_type_form_submit(&$form, &$form_state) {
  $config_pages_type = entity_ui_form_submit_build_entity($form, $form_state);
  $config_pages_type
    ->save();
  drupal_set_message(t('Page settings saved'));
}