You are here

function deploy_aggregator_views_deploy_aggregators in Deploy - Content Staging 7.2

Same name and namespace in other branches
  1. 7.3 modules/deploy_aggregator_views/deploy_aggregator_views.module \deploy_aggregator_views_deploy_aggregators()

Implementation of hook_deploy_aggregators().

File

modules/deploy_aggregator_views/deploy_aggregator_views.module, line 6

Code

function deploy_aggregator_views_deploy_aggregators() {
  $path = drupal_get_path('module', 'deploy_aggregator_views') . '/plugins';
  return array(
    'DeployAggregatorViews' => array(
      'name' => 'Views aggregator',
      'description' => 'Aggregates content to a deployment plan by executing a user defined view.',
      'handler' => array(
        'class' => 'DeployAggregatorViews',
        'file' => 'DeployAggregatorViews.inc',
        'path' => $path,
      ),
    ),
  );
}