function deploy_entity_dependency_iterator in Deploy - Content Staging 7.3
Same name and namespace in other branches
- 7.2 deploy.module \deploy_entity_dependency_iterator()
Implements hook_entity_dependency_iterator().
File
- ./
deploy.module, line 448 - 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;
}