| Versions | |
|---|---|
| 7 | actions_loop_test_trigger_info() |
Implements hook_trigger_info().
drupal/
<?php
function actions_loop_test_trigger_info() {
return array(
'actions_loop_test' => array(
'watchdog' => array(
'label' => t('When a message is logged'),
),
),
);
}
?>