action_example_basic_action

  1. drupal
    1. 7
Versions
7 action_example_basic_action(&$entity, $context = array())

Basic example action.

Parameters

$entity An optional entity object.

array $context Array with parameters for this action: depends on the trigger.

Related topics

Code

examples/action_example/action_example.module, line 209

<?php
function action_example_basic_action(&$entity, $context = array()) {
  //
  // In this case we are ignoring the entity and the context. This case of
  // action is useful when your action does not depend on the context, and
  // the function must do something regardless the scope of the trigger.
  // Simply announces that the action was executed using a messages.

  drupal_set_message(t('action_example_basic_action fired'));
  watchdog('action_example', 'action_example_basic_action fired.');
}
?>