function HelpSectionManager::__construct
Same name in other branches
- 9 core/modules/help/src/HelpSectionManager.php \Drupal\help\HelpSectionManager::__construct()
- 10 core/modules/help/src/HelpSectionManager.php \Drupal\help\HelpSectionManager::__construct()
- 11.x core/modules/help/src/HelpSectionManager.php \Drupal\help\HelpSectionManager::__construct()
Constructs a new HelpSectionManager.
Parameters
\Traversable $namespaces: An object that implements \Traversable which contains the root paths keyed by the corresponding namespace to look for plugin implementations.
\Drupal\Core\Cache\CacheBackendInterface $cache_backend: Cache backend instance to use.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler for the alter hook.
Overrides DefaultPluginManager::__construct
File
-
core/
modules/ help/ src/ HelpSectionManager.php, line 30
Class
- HelpSectionManager
- Manages help page section plugins.
Namespace
Drupal\helpCode
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/HelpSection', $namespaces, $module_handler, 'Drupal\\help\\HelpSectionPluginInterface', 'Drupal\\help\\Annotation\\HelpSection');
$this->alterInfo('help_section_info');
$this->setCacheBackend($cache_backend, 'help_section_plugins');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.