You are here

public function YamlDirectoryDiscovery::__construct in Drupal 8

Same name in this branch
  1. 8 core/lib/Drupal/Component/Discovery/YamlDirectoryDiscovery.php \Drupal\Component\Discovery\YamlDirectoryDiscovery::__construct()
  2. 8 core/lib/Drupal/Core/Plugin/Discovery/YamlDirectoryDiscovery.php \Drupal\Core\Plugin\Discovery\YamlDirectoryDiscovery::__construct()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Discovery/YamlDirectoryDiscovery.php \Drupal\Component\Discovery\YamlDirectoryDiscovery::__construct()
  2. 10 core/lib/Drupal/Component/Discovery/YamlDirectoryDiscovery.php \Drupal\Component\Discovery\YamlDirectoryDiscovery::__construct()

Constructs a YamlDirectoryDiscovery object.

Parameters

array $directories: An array of directories to scan, keyed by the provider. The value can either be a string or an array of strings. The string values should be the path of a directory to scan.

string $file_cache_key_suffix: The file cache key suffix. This should be unique for each type of discovery.

string $key: (optional) The key contained in the discovered data that identifies it. Defaults to 'id'.

File

core/lib/Drupal/Component/Discovery/YamlDirectoryDiscovery.php, line 58

Class

YamlDirectoryDiscovery
Discovers multiple YAML files in a set of directories.

Namespace

Drupal\Component\Discovery

Code

public function __construct(array $directories, $file_cache_key_suffix, $key = 'id') {
  $this->directories = $directories;
  $this->fileCacheKeySuffix = $file_cache_key_suffix;
  $this->idKey = $key;
}