You are here

public function DeriverInterface::getDerivativeDefinitions in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Plugin/Derivative/DeriverInterface.php \Drupal\Component\Plugin\Derivative\DeriverInterface::getDerivativeDefinitions()
  2. 10 core/lib/Drupal/Component/Plugin/Derivative/DeriverInterface.php \Drupal\Component\Plugin\Derivative\DeriverInterface::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.

See also

getDerivativeDefinition()

14 methods override DeriverInterface::getDerivativeDefinitions()
DeriverBase::getDerivativeDefinitions in core/lib/Drupal/Component/Plugin/Derivative/DeriverBase.php
Gets the definition of all derivatives of a base plugin.
EntityDeriver::getDerivativeDefinitions in core/modules/rest/src/Plugin/Deriver/EntityDeriver.php
Gets the definition of all derivatives of a base plugin.
EntityDeriver::getDerivativeDefinitions in core/lib/Drupal/Core/Entity/Plugin/DataType/Deriver/EntityDeriver.php
Gets the definition of all derivatives of a base plugin.
FieldItemDeriver::getDerivativeDefinitions in core/lib/Drupal/Core/Field/Plugin/DataType/Deriver/FieldItemDeriver.php
Gets the definition of all derivatives of a base plugin.
MigrateEntity::getDerivativeDefinitions in core/modules/migrate/src/Plugin/Derivative/MigrateEntity.php
Gets the definition of all derivatives of a base plugin.

... See full list

File

core/lib/Drupal/Component/Plugin/Derivative/DeriverInterface.php, line 41

Class

DeriverInterface
Provides additional plugin definitions based on an existing definition.

Namespace

Drupal\Component\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition);