v1/vendor/chi-teck/drupal-code-generator/templates/hook/entity_operation.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;
}