You are here

function _webform_chart_form_configure_save in Webform Chart 7

Same name and namespace in other branches
  1. 7.2 webform_chart.admin.inc \_webform_chart_form_configure_save()

Provides a saving handler for administration form.

Enable backend configuration saving if necessay. This invokes all *module_name*_wfc_backend_configuration_save functions so other modules may provide additional backends saving process.

The *module_name*_wfc_backend_configuration_save must return an array of: "key/value" to be display in form_set_error function using form_set_error

1 string reference to '_webform_chart_form_configure_save'
webform_chart_form_webform_configure_form_alter in ./webform_chart.module
Implements hook_form_FORM_ID_alter().

File

./webform_chart.admin.inc, line 143
Provides administration functions for the webform_chart module.

Code

function _webform_chart_form_configure_save(&$form, &$form_state) {

  // Save the global confirmation.
  node_save($form['#node']);
}