You are here

function vkxp_rules_action_info in VK CrossPoster 7.2

Implements hook_rules_action_info().

File

./vkxp.rules.inc, line 11
Rules integration for the VK CrossPoster module.

Code

function vkxp_rules_action_info() {
  return array(
    'vkxp_post_to_wall_action' => array(
      'label' => t('Post node to VK wall'),
      'group' => t('System'),
      'parameter' => array(
        'node' => array(
          'type' => 'node',
          'label' => t('Content'),
        ),
      ),
    ),
  );
}