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/media/src/Plugin/Derivative/DynamicLocalTasks.php \Drupal\media\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/media/src/Plugin/Derivative/DynamicLocalTasks.php, line 64

Class

DynamicLocalTasks
Generates media-related local tasks.

Namespace

Drupal\media\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {

  // Provide an edit_form task if standalone media URLs are enabled.
  $this->derivatives["entity.media.canonical"] = [
    'route_name' => "entity.media.canonical",
    'title' => $this
      ->t('Edit'),
    'base_route' => "entity.media.canonical",
    'weight' => 1,
  ] + $base_plugin_definition;
  if ($this->config
    ->get('standalone_url')) {
    $this->derivatives["entity.media.canonical"]['title'] = $this
      ->t('View');
    $this->derivatives["entity.media.edit_form"] = [
      'route_name' => "entity.media.edit_form",
      'title' => $this
        ->t('Edit'),
      'base_route' => 'entity.media.canonical',
      'weight' => 2,
    ] + $base_plugin_definition;
  }
  $this->derivatives["entity.media.delete_form"] = [
    'route_name' => "entity.media.delete_form",
    'title' => $this
      ->t('Delete'),
    'base_route' => "entity.media.canonical",
    'weight' => 10,
  ] + $base_plugin_definition;
  return $this->derivatives;
}