Submit handler for contextual_links_example_node_action_form().

Related topics

File

contextual_links_example/contextual_links_example.module, line 383
Shows how to use Drupal's contextual links functionality.

Code

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