public function EntityGet::getDerivativeDefinitions in Services 9.0.x
Same name and namespace in other branches
- 8.4 src/Plugin/Deriver/EntityGet.php \Drupal\services\Plugin\Deriver\EntityGet::getDerivativeDefinitions()
File
- src/
Plugin/ Deriver/ EntityGet.php, line 16
Class
Namespace
Drupal\services\Plugin\DeriverCode
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
$this->derivatives[$entity_type_id] = $base_plugin_definition;
$this->derivatives[$entity_type_id]['title'] = $this
->t('@label: Retrieve', [
'@label' => $entity_type
->getLabel(),
]);
$this->derivatives[$entity_type_id]['description'] = $this
->t('Retrieves a @entity_type_id object and serializes it as a response to the current request.', [
'@entity_type_id' => $entity_type_id,
]);
$this->derivatives[$entity_type_id]['category'] = $this
->t('@label', [
'@label' => $entity_type
->getLabel(),
]);
$this->derivatives[$entity_type_id]['path'] = "{$entity_type_id}/{{$entity_type_id}}";
$this->derivatives[$entity_type_id]['context'] = [
"{$entity_type_id}" => new ContextDefinition("entity:{$entity_type_id}", $this
->t('@label', [
'@label' => $entity_type
->getLabel(),
])),
];
}
return $this->derivatives;
}