You are here

function deploy_deploy_aggregators in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 deploy.deploy.inc \deploy_deploy_aggregators()

Implements hook_deploy_aggregators().

File

./deploy.deploy.inc, line 22
Deploy's implementation of its own API.

Code

function deploy_deploy_aggregators() {
  $path = drupal_get_path('module', 'deploy') . '/plugins';
  return array(
    'DeployAggregatorManaged' => array(
      'name' => 'Managed aggregator',
      'description' => 'Provides methods for modules (or users) to manually manage entitites to be aggregated for deployment.',
      'handler' => array(
        'class' => 'DeployAggregatorManaged',
        'file' => 'DeployAggregatorManaged.inc',
        'path' => $path,
      ),
    ),
  );
}