You are here

public function EntityqueueLocalTask::getDerivativeDefinitions in Entityqueue 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/EntityqueueLocalTask.php, line 52

Class

EntityqueueLocalTask
Provides local task definitions for all entity bundles.

Namespace

Drupal\entityqueue\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  $this->derivatives = [];
  foreach ($this->entityTypeManager
    ->getDefinitions() as $entity_type_id => $entity_type) {
    if ($entity_type
      ->hasViewBuilderClass() && $entity_type
      ->hasLinkTemplate('canonical')) {
      $entityqueue_route_name = "entity.{$entity_type_id}.entityqueue";
      $this->derivatives[$entityqueue_route_name] = [
        'entity_type' => $entity_type_id,
        'title' => $this
          ->t('Entityqueue'),
        'route_name' => $entityqueue_route_name,
        'base_route' => "entity.{$entity_type_id}.canonical",
        // Ensure that the entityqueue tab is at the end of the list.
        'weight' => 21,
      ] + $base_plugin_definition;
    }
  }
  return parent::getDerivativeDefinitions($base_plugin_definition);
}