function 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\DerivativeCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.