Implements hook_action_info().

File

modules/simpletest/tests/actions_loop_test.module, line 49

Code

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',
      ),
    ),
  );
}