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