You are here

function regcode_action_info in Registration codes 6.2

Same name and namespace in other branches
  1. 7.2 regcode.module \regcode_action_info()
  2. 7 regcode.module \regcode_action_info()

Implementation of hook_action_info().

File

./regcode.module, line 190

Code

function regcode_action_info() {
  return array(
    'regcode_activate_action' => array(
      'type' => 'regcode',
      'description' => t('Activate codes'),
      'configurable' => FALSE,
      'hooks' => array(
        'any' => TRUE,
      ),
    ),
    'regcode_deactivate_action' => array(
      'type' => 'regcode',
      'description' => t('Deactive codes'),
      'configurable' => FALSE,
      'hooks' => array(
        'any' => TRUE,
      ),
    ),
    'regcode_delete_action' => array(
      'type' => 'regcode',
      'description' => t('Delete codes'),
      'configurable' => FALSE,
      'hooks' => array(
        'any' => TRUE,
      ),
    ),
    'regcode_tag_action' => array(
      'type' => 'regcode',
      'description' => t('Tag codes'),
      'configurable' => TRUE,
      'hooks' => array(
        'any' => TRUE,
      ),
    ),
  );
}