You are here

public function ExtensionDiscovery::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Extension/ExtensionDiscovery.php \Drupal\Core\Extension\ExtensionDiscovery::__construct()

Constructs a new ExtensionDiscovery object.

Parameters

string $root: The app root.

bool $use_file_cache: Whether file cache should be used.

string[] $profile_directories: The available profile directories

string $site_path: The path to the site.

File

core/lib/Drupal/Core/Extension/ExtensionDiscovery.php, line 106

Class

ExtensionDiscovery
Discovers available extensions in the filesystem.

Namespace

Drupal\Core\Extension

Code

public function __construct($root, $use_file_cache = TRUE, $profile_directories = NULL, $site_path = NULL) {
  $this->root = $root;
  $this->fileCache = $use_file_cache ? FileCacheFactory::get('extension_discovery') : NULL;
  $this->profileDirectories = $profile_directories;
  $this->sitePath = $site_path;
}