You are here

public function DeployAggregatorBase::__construct in Deploy - Content Staging 7.2

Same name and namespace in other branches
  1. 7.3 includes/DeployAggregator.inc \DeployAggregatorBase::__construct()

Constructor for a deploy aggregator.

Parameters

DeployPlan $plan: The plan that will use this aggregator.

array $config: An associative array representing the configuration settings for the aggregator.

Overrides DeployAggregator::__construct

2 methods override DeployAggregatorBase::__construct()
DeployAggregatorManaged::__construct in plugins/DeployAggregatorManaged.inc
Constructor for a deploy aggregator.
DeployAggregatorViews::__construct in modules/deploy_aggregator_views/plugins/DeployAggregatorViews.inc
Constructor for a deploy aggregator.

File

includes/DeployAggregator.inc, line 66
Interface definition for deploy aggregators.

Class

DeployAggregatorBase
Base class implementing the DeployAggregator interface. All aggregator plugins should extend this class.

Code

public function __construct(DeployPlan $plan = NULL, array $config = array()) {
}