| Versions | |
|---|---|
| 7 | action_example_basic_action(&$entity, $context = array()) |
Basic example action.
$entity An optional entity object.
array $context Array with parameters for this action: depends on the trigger.
examples/
<?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.');
}
?>