public function ApiDocListBuilder::getOperations in Apigee API Catalog 8
Provides an array of information to build a list of operation links.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity the operations are for.
Return value
array An associative array of operation link data for this list, keyed by operation name, containing the following key-value pairs:
- title: The localized title of the operation.
- url: An instance of \Drupal\Core\Url for the operation URL.
- weight: The weight of this operation.
Overrides EntityListBuilder::getOperations
File
- src/
Entity/ ListBuilder/ ApiDocListBuilder.php, line 84
Class
- ApiDocListBuilder
- Defines a class to build a listing of API Doc entities.
Namespace
Drupal\apigee_api_catalog\Entity\ListBuilderCode
public function getOperations(EntityInterface $entity) {
$operations = parent::getOperations($entity);
// Add "Re-import OpenAPI spec" link.
if ($entity
->access('reimport')) {
$operations['reimport_spec'] = [
'title' => $this
->t('Re-import OpenAPI spec'),
'weight' => 15,
'url' => $this
->ensureDestination($entity
->toUrl('reimport-spec-form')),
];
}
return $operations;
}