You are here

public function ContentTranslationLocalTasks::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/content_translation/src/Plugin/Derivative/ContentTranslationLocalTasks.php \Drupal\content_translation\Plugin\Derivative\ContentTranslationLocalTasks::__construct()
  2. 9 core/modules/content_translation/src/Plugin/Derivative/ContentTranslationLocalTasks.php \Drupal\content_translation\Plugin\Derivative\ContentTranslationLocalTasks::__construct()

Constructs a new ContentTranslationLocalTasks.

Parameters

string $base_plugin_id: The base plugin ID.

\Drupal\content_translation\ContentTranslationManagerInterface $content_translation_manager: The content translation manager.

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

File

core/modules/content_translation/src/Plugin/Derivative/ContentTranslationLocalTasks.php, line 42

Class

ContentTranslationLocalTasks
Provides dynamic local tasks for content translation.

Namespace

Drupal\content_translation\Plugin\Derivative

Code

public function __construct($base_plugin_id, ContentTranslationManagerInterface $content_translation_manager, TranslationInterface $string_translation) {
  $this->basePluginId = $base_plugin_id;
  $this->contentTranslationManager = $content_translation_manager;
  $this->stringTranslation = $string_translation;
}