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/media/src/Plugin/Derivative/DynamicLocalTasks.php \Drupal\media\Plugin\Derivative\DynamicLocalTasks::__construct()

Creates a DynamicLocalTasks object.

Parameters

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

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

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

File

core/modules/media/src/Plugin/Derivative/DynamicLocalTasks.php, line 44

Class

DynamicLocalTasks
Generates media-related local tasks.

Namespace

Drupal\media\Plugin\Derivative

Code

public function __construct(TranslationInterface $string_translation, EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory) {
  $this->stringTranslation = $string_translation;
  $this->entityTypeManager = $entity_type_manager;
  $this->config = $config_factory
    ->get('media.settings');
}