You are here

function ctools_qtip_content_type_edit_form_submit in qTip (Stylish jQuery Tooltips) 7.2

Save the config settings.

File

plugins/content_types/qtip.inc, line 142

Code

function ctools_qtip_content_type_edit_form_submit($form, &$form_state) {
  $conf = $form_state['conf'] + $form_state['plugin']['defaults'];
  foreach ($form_state['plugin']['defaults'] as $key => $value) {
    if (is_array($value)) {

      // Ensure it's a complete array.
      $form_state['values'][$key] += $conf[$key];
    }
    if (isset($form_state['values'][$key])) {
      $form_state['conf'][$key] = $form_state['values'][$key];
    }
  }
}