You are here

function party_attached_entity_edit_form_edit_form_submit in Party 7

Same name and namespace in other branches
  1. 8.2 plugins/content_types/party_attached_entity_edit_form.inc \party_attached_entity_edit_form_edit_form_submit()

File

plugins/content_types/party_attached_entity_edit_form.inc, line 144
CTools content for user edit form

Code

function party_attached_entity_edit_form_edit_form_submit(&$form, &$form_state) {
  foreach (element_children($form) as $key) {
    if (isset($form_state['values'][$key])) {
      $form_state['conf'][$key] = $form_state['values'][$key];
    }
  }
}