public static function TourHelpSection::create in Drupal 10
Same name and namespace in other branches
- 8 core/modules/tour/src/Plugin/HelpSection/TourHelpSection.php \Drupal\tour\Plugin\HelpSection\TourHelpSection::create()
- 9 core/modules/tour/src/Plugin/HelpSection/TourHelpSection.php \Drupal\tour\Plugin\HelpSection\TourHelpSection::create()
File
- core/
modules/ tour/ src/ Plugin/ HelpSection/ TourHelpSection.php, line 52
Class
- TourHelpSection
- Provides the tours list section for the help page.
Namespace
Drupal\tour\Plugin\HelpSectionCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'));
}