You are here

function oa_widgets_visibility_toolbar_edit_form_submit in Open Atrium Core 7.2

Saves changes to the widget.

File

modules/oa_widgets/plugins/content_types/oa_widgets_visibility_toolbar.inc, line 47

Code

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