You are here

function patch_manager_action_info in Patch manager 6

Same name and namespace in other branches
  1. 7 patch_manager.module \patch_manager_action_info()

Implementation of hook_action_info().

File

./patch_manager.module, line 159
patch_manager.module Patch manager provides developers with tools for managing patches.

Code

function patch_manager_action_info() {
  return array(
    'patch_manager_apply_action' => array(
      'type' => 'node',
      'description' => t('Apply patch'),
      'configurable' => FALSE,
      'hooks' => array(
        'any' => TRUE,
      ),
    ),
    'patch_manager_revert_action' => array(
      'type' => 'node',
      'description' => t('Revert patch'),
      'configurable' => FALSE,
      'hooks' => array(
        'any' => TRUE,
      ),
    ),
  );
}