You are here

function total_control_node_types_content_type_edit_form_submit in Total Control Admin Dashboard 6.2

Same name and namespace in other branches
  1. 7.2 plugins/content_types/node_types.inc \total_control_node_types_content_type_edit_form_submit()

'Edit form' submit callback for the content type.

File

plugins/content_types/node_types.inc, line 158
panel_pages.inc

Code

function total_control_node_types_content_type_edit_form_submit(&$form, &$form_state) {
  foreach (array_keys($form_state['plugin']['defaults']) as $key) {
    $form_state['conf'][$key] = $form_state['values'][$key];
  }
}