You are here

function commerce_registration_node_form_submit in Commerce Registration 7.3

Node form submit handler to update our entity settings.

1 string reference to 'commerce_registration_node_form_submit'
commerce_registration_form_node_form_alter in ./commerce_registration.module
Implements hook_form_FORM_ID_alter().

File

./commerce_registration.module, line 407
Commerce Registration module code.

Code

function commerce_registration_node_form_submit($form, $form_state) {
  $settings = $form_state['values']['commerce_registration'];
  commerce_registration_update_entity_settings('node', $form['#node'], $settings);
}