You are here

public function DeployIterator::getChildren in Deploy - Content Staging 7.2

Same name and namespace in other branches
  1. 7.3 includes/DeployIterator.inc \DeployIterator::getChildren()

We override this method since we need to return our own iterator.

Return value

DeployIterator

Overrides EntityDependencyIterator::getChildren

1 method overrides DeployIterator::getChildren()
NoDependencyIterator::getChildren in modules/deploy_auto_plan/plugins/iterator/deploy_auto_plan.NoDependencyIterator.class.php
We override this method since we need to return our own iterator.

File

includes/DeployIterator.inc, line 22
Deploy interator implementation.

Class

DeployIterator
Iterator class which does the heavy lifting for detecting dependencies.

Code

public function getChildren() {
  return new DeployIterator($this
    ->getChildrenEntities(), $this);
}