You are here

public function FilesystemLoader::addPath in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Template/Loader/FilesystemLoader.php \Drupal\Core\Template\Loader\FilesystemLoader::addPath()

Adds a path where templates are stored.

Parameters

string $path: A path where to look for templates.

string $namespace: (optional) A path name.

1 call to FilesystemLoader::addPath()
FilesystemLoader::__construct in core/lib/Drupal/Core/Template/Loader/FilesystemLoader.php
Constructs a new FilesystemLoader object.

File

core/lib/Drupal/Core/Template/Loader/FilesystemLoader.php, line 53

Class

FilesystemLoader
Loads templates from the filesystem.

Namespace

Drupal\Core\Template\Loader

Code

public function addPath($path, $namespace = self::MAIN_NAMESPACE) {

  // Invalidate the cache.
  $this->cache = [];
  $this->paths[$namespace][] = rtrim($path, '/\\');
}