You are here

function hook_deploy_entity_alter in Deploy - Content Staging 7.2

Same name and namespace in other branches
  1. 7.3 deploy.api.php \hook_deploy_entity_alter()

Allow modules to modify an entity before it gets deployed.

Parameters

$entity: The entity being deployed.

$entity_type: The entity type; for example 'node' or 'user'.

2 functions implement hook_deploy_entity_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

field_deploy_entity_alter in ./deploy.core.inc
Implements hook_deploy_entity_alter().
file_deploy_entity_alter in ./deploy.core.inc
Implements hook_deploy_entity_alter().
1 invocation of hook_deploy_entity_alter()
DeployIterator::current in includes/DeployIterator.inc
We override this method since we need to return UUID entities, with some extra hooks.

File

./deploy.api.php, line 17
Hooks provided by the Deploy module.

Code

function hook_deploy_entity_alter(&$entity, $entity_type) {
}