You are here

protected function HelpTopicTwigLoader::addExtension in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/help_topics/src/HelpTopicTwigLoader.php \Drupal\help_topics\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_topics/src/HelpTopicTwigLoader.php
Constructs a new HelpTopicTwigLoader object.

File

core/modules/help_topics/src/HelpTopicTwigLoader.php, line 59

Class

HelpTopicTwigLoader
Loads help topic Twig files from the filesystem.

Namespace

Drupal\help_topics

Code

protected function addExtension($path) {
  $path .= DIRECTORY_SEPARATOR . 'help_topics';
  if (is_dir($path)) {
    $this->cache = $this->errorCache = [];
    $this->paths[self::MAIN_NAMESPACE][] = rtrim($path, '/\\');
  }
}