You are here

function tft_og_rules_action_info in Taxonomy File Tree 7.2

Implements hook_rules_action_info().

File

modules/tft_og/tft_og.module, line 43
Hook implementations for TFT OG.

Code

function tft_og_rules_action_info() {
  return array(
    'tft_og_rules_create_og_root_folder' => array(
      'label' => t('Create a root folder for a group'),
      'group' => t('Taxonomy File Tree'),
      'parameter' => array(
        'group' => array(
          'type' => 'node',
          'label' => t('Group'),
        ),
      ),
    ),
  );
}