You are here

function deploy_remote_cc_deploy_services in Deploy - Content Staging 7.3

Implements hook_deploy_services().

File

modules/deploy_remote_cc/deploy_remote_cc.module, line 113
Remote Cache clear module.

Code

function deploy_remote_cc_deploy_services() {
  $path = drupal_get_path('module', 'deploy_remote_cc') . '/plugins';
  return array(
    'DeployRemoteCcServiceRestJSON' => array(
      'name' => 'Remote cache clear using REST JSON',
      'description' => 'Performs cache clear on remote environment over a REST service that can receive JSON data.',
      'handler' => array(
        'class' => 'DeployRemoteCcServiceRestJSON',
        'file' => 'DeployRemoteCcServiceRestJSON.inc',
        'path' => $path,
      ),
    ),
  );
}