You are here

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

Creates a FieldUiLocalTask object.

Parameters

string $base_plugin_id: The base plugin ID.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The translation manager.

\Drupal\content_moderation\ModerationInformationInterface $moderation_information: The moderation information service.

\Symfony\Component\Routing\RouterInterface $router: The router.

File

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

Class

DynamicLocalTasks
Generates moderation-related local tasks.

Namespace

Drupal\content_moderation\Plugin\Derivative

Code

public function __construct($base_plugin_id, EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation, ModerationInformationInterface $moderation_information, RouterInterface $router) {
  $this->entityTypeManager = $entity_type_manager;
  $this->stringTranslation = $string_translation;
  $this->basePluginId = $base_plugin_id;
  $this->moderationInfo = $moderation_information;
  $this->router = $router;
}