forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
14 lines
344 B
Twig
14 lines
344 B
Twig
/**
|
|
* Implements hook_entity_operation().
|
|
*/
|
|
function {{ machine_name }}_entity_operation(\Drupal\Core\Entity\EntityInterface $entity) {
|
|
$operations = [];
|
|
$operations['translate'] = [
|
|
'title' => t('Translate'),
|
|
'url' => \Drupal\Core\Url::fromRoute('foo_module.entity.translate'),
|
|
'weight' => 50,
|
|
];
|
|
|
|
return $operations;
|
|
}
|