You are here

public function DeployPlan::getIterator in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 includes/DeployPlan.inc \DeployPlan::getIterator()

Returns an object that implements the DeployAggregator interface.

Return value

DeployAggregator

File

includes/DeployPlan.inc, line 295
Definition of a deployment plan and associated exceptions.

Class

DeployPlan
Class representing a deployment plan.

Code

public function getIterator() {
  if (empty($this->aggregator)) {
    $this
      ->init();
  }
  return $this->aggregator
    ->getIterator();
}