You are here

function webform_analysis_components_form_submit in Webform 7.4

Submit handler for webform_analysis_components_form().

File

includes/webform.report.inc, line 1874
This file includes helper functions for creating reports for webform.module.

Code

function webform_analysis_components_form_submit($form, $form_state) {
  $node = $form['#node'];

  // Get a fresh copy of the node so that we are only saving these changes.
  // Otherwise, changes to the Webform on another tab will be overwritten.
  $node = node_load($node->nid, NULL, TRUE);
  foreach ($form_state['values']['components'] as $cid => $enabled) {
    $node->webform['components'][$cid]['extra']['analysis'] = (bool) $enabled;
  }
  node_save($node);
}