You are here

deploy_aggregator_views.module in Deploy - Content Staging 7.3

Same filename and directory in other branches
  1. 7.2 modules/deploy_aggregator_views/deploy_aggregator_views.module

File

modules/deploy_aggregator_views/deploy_aggregator_views.module
View source
<?php

/**
 * Implementation of hook_deploy_aggregators().
 */
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,
      ),
    ),
  );
}

Functions

Namesort descending Description
deploy_aggregator_views_deploy_aggregators Implementation of hook_deploy_aggregators().