function hook_entity_embed_context_alter in Entity Embed 7
Same name and namespace in other branches
- 8 entity_embed.api.php \hook_entity_embed_context_alter()
- 7.3 entity_embed.api.php \hook_entity_embed_context_alter()
- 7.2 entity_embed.api.php \hook_entity_embed_context_alter()
Alter the placeholder context for an embedded entity.
Parameters
array &$context: The context array.
callable &$callback: The callback function to be used.
$entity: The entity being rendered.
1 function implements hook_entity_embed_context_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_embed_test_entity_embed_context_alter in tests/
entity_embed_test.module - Implements hook_entity_embed_context_alter().
File
- ./
entity_embed.api.php, line 23 - Hooks provided by the entity_embed module.
Code
function hook_entity_embed_context_alter(&$context, &$callback, $entity) {
}