You are here

public function AliasGet::getDerivativeDefinitions in Services 8.4

Same name and namespace in other branches
  1. 9.0.x src/Plugin/Deriver/AliasGet.php \Drupal\services\Plugin\Deriver\AliasGet::getDerivativeDefinitions()

Gets the definition of all derivatives of a base plugin.

Parameters

array $base_plugin_definition: The definition array of the base plugin.

Return value

array An array of full derivative definitions keyed on derivative id.

Overrides DeriverBase::getDerivativeDefinitions

See also

getDerivativeDefinition()

File

src/Plugin/Deriver/AliasGet.php, line 15

Class

AliasGet
Class \Drupal\services\Plugin\Deriver\AliasGet.

Namespace

Drupal\services\Plugin\Deriver

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  foreach ($this->entityTypeManager
    ->getDefinitions() as $entity_type_id => $entity_type) {
    if ($entity_type_id === 'node') {
      $this->derivatives[$entity_type_id] = $base_plugin_definition;
      $this->derivatives[$entity_type_id]['title'] = $this
        ->t('@label: Alias 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}_alias";
    }
  }
  return $this->derivatives;
}