You are here

function context_node_form_submit in Context Node 7

Same name and namespace in other branches
  1. 6 context_node.module \context_node_form_submit()

Submit callback

1 string reference to 'context_node_form_submit'
context_node_form_node_form_alter in ./context_node.module
Implements hook_form_node_form_alter()

File

./context_node.module, line 93

Code

function context_node_form_submit($form, &$form_state) {
  $form_state['node']->context = $form_state['values']['context'];
  $form_state['rebuild'] = TRUE;
}