You are here

function webform_configure_form_submit_save in Webform 6.3

Same name and namespace in other branches
  1. 7.4 includes/webform.pages.inc \webform_configure_form_submit_save()
  2. 7.3 includes/webform.pages.inc \webform_configure_form_submit_save()

Submit handler for webform_configure_form() that saves the node.

This is separate from webform_configure_form_submit() to allow other modules to add properties if needed into the $form['#node'] object before save.

1 string reference to 'webform_configure_form_submit_save'
webform_configure_form in includes/webform.pages.inc
Main configuration form for editing a webform node.

File

includes/webform.pages.inc, line 351
Menu callbacks and functions for configuring and editing webforms.

Code

function webform_configure_form_submit_save($form, &$form_state) {
  node_save($form['#node']);
  drupal_set_message(t('The form settings have been updated.'));
}