You are here

function deploy_auto_plan_entity_dependency_iterator in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 modules/deploy_auto_plan/deploy_auto_plan.module \deploy_auto_plan_entity_dependency_iterator()

Implements hook_entity_dependency_iterator().

File

modules/deploy_auto_plan/deploy_auto_plan.module, line 210
Deploy Auto Plan module functions.

Code

function deploy_auto_plan_entity_dependency_iterator() {
  $plugins = array();
  $plugins['no_dependency'] = array(
    'title' => t('No Dependency Iterator'),
    'description' => t('This iterator assumes depedencies are already includd in the plan.'),
    'handler' => 'NoDependencyIterator',
    'file' => 'plugins/iterator/deploy_auto_plan.NoDependencyIterator.class.php',
  );
  return $plugins;
}