function HelpTopicTwigLoader::addExtension
Adds an extensions help_topics directory to the Twig loader.
Parameters
$path: The path to the extension.
1 call to HelpTopicTwigLoader::addExtension()
- HelpTopicTwigLoader::__construct in core/
modules/ help/ src/ HelpTopicTwigLoader.php - Constructs a new HelpTopicTwigLoader object.
File
-
core/
modules/ help/ src/ HelpTopicTwigLoader.php, line 59
Class
- HelpTopicTwigLoader
- Loads help topic Twig files from the filesystem.
Namespace
Drupal\helpCode
protected function addExtension($path) {
$path .= DIRECTORY_SEPARATOR . 'help_topics';
if (is_dir($path)) {
$this->cache = $this->errorCache = [];
$this->paths[self::MAIN_NAMESPACE][] = rtrim($path, '/\\');
}
}