function action_loop_test_action_info

Implements hook_action_info().

1 call to action_loop_test_action_info()
LoopTest::testActionLoop in drupal/core/modules/action/lib/Drupal/action/Tests/LoopTest.php
Sets up a loop with 3 - 12 recursions, and sees if it aborts properly.

File

drupal/core/modules/action/tests/action_loop_test/action_loop_test.module, line 34

Code

function action_loop_test_action_info() {
  return array(
    'action_loop_test_log' => array(
      'label' => t('Write a message to the log.'),
      'type' => 'system',
      'configurable' => FALSE,
      'triggers' => array(
        'any',
      ),
    ),
  );
}