ExtensionDiscovery::__construct

public ExtensionDiscovery::__construct($root, $use_file_cache = TRUE, $profile_directories = NULL, $site_path = NULL)

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 113

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;
}
doc_Drupal
2016-10-29 09:09:44
Comments
Leave a Comment

Please login to continue.