W3cubDocs

/Drupal 8

function hook_entity_operation_alter

hook_entity_operation_alter(array &$operations, \Drupal\Core\Entity\EntityInterface $entity)

Alter entity operations.

Parameters

array $operations: Operations array as returned by \Drupal\Core\Entity\EntityListBuilderInterface::getOperations().

\Drupal\Core\Entity\EntityInterface $entity: The entity on which the linked operations will be performed.

Related topics

Hooks
Define functions that alter the behavior of Drupal core.

File

core/lib/Drupal/Core/Entity/entity.api.php, line 1846
Hooks and documentation related to entities.

Code

function hook_entity_operation_alter(array &$operations, \Drupal\Core\Entity\EntityInterface $entity) {
  // Alter the title and weight.
  $operations['translate']['title'] = t('Translate @entity_type', array(
    '@entity_type' => $entity->getEntityTypeId(),
  ));
  $operations['translate']['weight'] = 99;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!entity.api.php/function/hook_entity_operation_alter/8.1.x