You are here

function total_control_webform_content_type_edit_form_submit in Total Control Admin Dashboard 7.2

'Edit form' submit callback for the content type.

File

plugins/content_types/webform.inc, line 121

Code

function total_control_webform_content_type_edit_form_submit($form, &$form_state) {
  foreach (array(
    'item1',
    'item2',
  ) as $key) {
    $form_state['conf'][$key] = $form_state['values'][$key];
  }
}