1 actions_loop_test.module actions_loop_test_action_info()

Implements hook_action_info().

File

core/modules/simpletest/tests/actions_loop_test.module, line 33

Code

function actions_loop_test_action_info() {
  return array(
    'actions_loop_test_log' => array(
      'label' => t('Write a message to the log.'),
      'type' => 'system',
    ),
  );
}