function entity_test_entity_operation_alter

Implements hook_entity_operation_alter().

File

drupal/core/modules/system/tests/modules/entity_test/entity_test.module, line 425
Test module for the entity API providing several entity types for testing.

Code

function entity_test_entity_operation_alter(array &$operations, EntityInterface $entity) {
  $uri = $entity
    ->uri();
  $operations['test_operation'] = array(
    'title' => format_string('Test Operation: @label', array(
      '@label' => $entity
        ->label(),
    )),
    'href' => $uri['path'] . '/test_operation',
    'weight' => 50,
  );
}