You are here

function flag_hook_test_rules_action_info in Flag 7.3

Implements hook_rules_action_info().

File

tests/flag_hook_test/flag_hook_test.module, line 143
flag_hook_test.module Test module for the hooks that Flag invokes.

Code

function flag_hook_test_rules_action_info() {
  return array(
    'flag_test_action' => array(
      'label' => t('Flag test action'),
      'group' => t('Flag test'),
    ),
  );
}