You are here

public function DynamicLocalTasks::getDerivativeDefinitions in Drupal 9

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

Class

DynamicLocalTasks
Generates moderation-related local tasks.

Namespace

Drupal\content_moderation\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  $this->derivatives = [];

  // Add the moderated content task if the route exists.
  if ($this->router
    ->getRouteCollection()
    ->get('content_moderation.admin_moderated_content') !== NULL) {
    $this->derivatives['content_moderation.moderated_content'] = [
      'route_name' => 'content_moderation.admin_moderated_content',
      'title' => $this
        ->t('Moderated content'),
      'parent_id' => 'system.admin_content',
      'weight' => 1,
    ];
  }

  // Add the latest version tab to entities.
  $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;
}