You are here

public function ConvertBundlesLocalTask::getDerivativeDefinitions in Convert Bundles 8

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/Derivative/ConvertBundlesLocalTask.php, line 55

Class

ConvertBundlesLocalTask
Provides local task definitions for all entity bundles.

Namespace

Drupal\convert_bundles\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  $this->derivatives = [];
  foreach ($this->entityTypeManager
    ->getDefinitions() as $entity_type_id => $entity_type) {
    $this->derivatives["entity.{$entity_type_id}.convert_bundles"] = [
      'route_name' => "entity.{$entity_type_id}.convert_bundles",
      'title' => $this
        ->t('Convert Bundle'),
      'base_route' => "entity.{$entity_type_id}.canonical",
      'weight' => 100,
    ];
  }
  foreach ($this->derivatives as &$entry) {
    $entry += $base_plugin_definition;
  }
  return $this->derivatives;
}