You are here

public function DeployAggregatorBase::getEntities in Deploy - Content Staging 7.3

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

Returns an array of entities.

Return value

array() An array of entities structured as follows:

$entities = array(
  'node' => array(
    10 => TRUE,
    12 => array(
      'taxonomy_term' => array(
        14 => TRUE,
      ),
      'user' => array(
        8 => TRUE,
      ),
    ),
  ),
  'taxonomy_term' => array(
    16 => TRUE,
  ),
);
1 call to DeployAggregatorBase::getEntities()
DeployAggregatorBase::getIterator in includes/DeployAggregator.inc
Returns a DeployIteratorIterator, which can iterate through recursive iterators
2 methods override DeployAggregatorBase::getEntities()
DeployAggregatorManaged::getEntities in plugins/DeployAggregatorManaged.inc
Get aggregated entities.
DeployAggregatorViews::getEntities in modules/deploy_aggregator_views/plugins/DeployAggregatorViews.inc
Get aggregated entities.

File

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

Class

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

Code

public function getEntities() {
}