You are here

public function DynamicLocalTasks::getDerivativeDefinitions in Drupal 8

Same name in this branch
  1. 8 core/modules/content_moderation/src/Plugin/Derivative/DynamicLocalTasks.php \Drupal\content_moderation\Plugin\Derivative\DynamicLocalTasks::getDerivativeDefinitions()
  2. 8 core/modules/media/src/Plugin/Derivative/DynamicLocalTasks.php \Drupal\media\Plugin\Derivative\DynamicLocalTasks::getDerivativeDefinitions()
Same name and namespace in other branches
  1. 9 core/modules/content_moderation/src/Plugin/Derivative/DynamicLocalTasks.php \Drupal\content_moderation\Plugin\Derivative\DynamicLocalTasks::getDerivativeDefinitions()
  2. 10 core/modules/content_moderation/src/Plugin/Derivative/DynamicLocalTasks.php \Drupal\content_moderation\Plugin\Derivative\DynamicLocalTasks::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

core/modules/content_moderation/src/Plugin/Derivative/DynamicLocalTasks.php, line 76

Class

DynamicLocalTasks
Generates moderation-related local tasks.

Namespace

Drupal\content_moderation\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  $this->derivatives = [];
  $latest_version_entities = array_filter($this->entityTypeManager
    ->getDefinitions(), function (EntityTypeInterface $type) {
    return $this->moderationInfo
      ->canModerateEntitiesOfEntityType($type) && $type
      ->hasLinkTemplate('latest-version');
  });
  foreach ($latest_version_entities as $entity_type_id => $entity_type) {
    $this->derivatives["{$entity_type_id}.latest_version_tab"] = [
      'route_name' => "entity.{$entity_type_id}.latest_version",
      'title' => $this
        ->t('Latest version'),
      'base_route' => "entity.{$entity_type_id}.canonical",
      'weight' => 1,
    ] + $base_plugin_definition;
  }
  return $this->derivatives;
}