You are here

public function DsLocalTask::__construct in Display Suite 8.4

Same name and namespace in other branches
  1. 8.2 src/Plugin/Derivative/DsLocalTask.php \Drupal\ds\Plugin\Derivative\DsLocalTask::__construct()
  2. 8.3 src/Plugin/Derivative/DsLocalTask.php \Drupal\ds\Plugin\Derivative\DsLocalTask::__construct()

Creates an DevelLocalTask object.

Parameters

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

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

File

src/Plugin/Derivative/DsLocalTask.php, line 34

Class

DsLocalTask
Provides local task definitions for all entity bundles.

Namespace

Drupal\ds\Plugin\Derivative

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, TranslationInterface $string_translation) {
  $this->entityTypeManager = $entity_type_manager;
  $this->stringTranslation = $string_translation;
}