| Versions | |
|---|---|
| 7 | actions_loop_test_action_info() |
Implements hook_action_info().
drupal/
<?php
function actions_loop_test_action_info() {
return array(
'actions_loop_test_log' => array(
'label' => t('Write a message to the log.'),
'type' => 'system',
'configurable' => FALSE,
'triggers' => array('any'),
),
);
}
?>