You are here

function hook_entity_embed_context_alter in Entity Embed 7.2

Same name and namespace in other branches
  1. 8 entity_embed.api.php \hook_entity_embed_context_alter()
  2. 7.3 entity_embed.api.php \hook_entity_embed_context_alter()
  3. 7 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) {
}