public function TourHelpSection::__construct in Drupal 8
Same name and namespace in other branches
- 9 core/modules/tour/src/Plugin/HelpSection/TourHelpSection.php \Drupal\tour\Plugin\HelpSection\TourHelpSection::__construct()
Constructs a TourHelpSection object.
Parameters
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin_id for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity manager service.
Overrides PluginBase::__construct
File
- core/
modules/ tour/ src/ Plugin/ HelpSection/ TourHelpSection.php, line 44
Class
- TourHelpSection
- Provides the tours list section for the help page.
Namespace
Drupal\tour\Plugin\HelpSectionCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entity_type_manager;
}