Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_operation_alter.twig
1 /**
2  * Implements hook_entity_operation_alter().
3  */
4 function {{ machine_name }}_entity_operation_alter(array &$operations, \Drupal\Core\Entity\EntityInterface $entity) {
5   // Alter the title and weight.
6   $operations['translate']['title'] = t('Translate @entity_type', [
7     '@entity_type' => $entity->getEntityTypeId(),
8   ]);
9   $operations['translate']['weight'] = 99;
10 }