1 contextual_links_example.module contextual_links_example_node_action_form_submit($form, &$form_state)

Submit handler for contextual_links_example_node_action_form().

Related topics

File

modules/examples/contextual_links_example/contextual_links_example.module, line 380
Hooks implementations for the Contextual Links Example module.

Code

function contextual_links_example_node_action_form_submit($form, &$form_state) {
  backdrop_set_message(t('The example action was performed on node @nid.', array('@nid' => $form_state['values']['nid'])));
}