You are here

function deploy_entity_dependency_iterator in Deploy - Content Staging 7.2

Same name and namespace in other branches
  1. 7.3 deploy.module \deploy_entity_dependency_iterator()

Implements hook_entity_dependency_iterator().

File

./deploy.module, line 285
Deploy module functions.

Code

function deploy_entity_dependency_iterator() {
  $plugins = array();
  $plugins['deploy_iterator'] = array(
    'title' => t('Deploy Iterator'),
    'description' => t('Default iterator for Deploy to return UUID entities and invoke Deploy-specific hooks.'),
    'handler' => 'DeployIterator',
    'file' => 'includes/DeployIterator.inc',
  );
  return $plugins;
}