function YamlDiscovery::__construct
Same name in this branch
- 8.9.x core/lib/Drupal/Component/Discovery/YamlDiscovery.php \Drupal\Component\Discovery\YamlDiscovery::__construct()
Same name in other branches
- 9 core/lib/Drupal/Core/Plugin/Discovery/YamlDiscovery.php \Drupal\Core\Plugin\Discovery\YamlDiscovery::__construct()
- 9 core/lib/Drupal/Component/Discovery/YamlDiscovery.php \Drupal\Component\Discovery\YamlDiscovery::__construct()
- 10 core/lib/Drupal/Core/Plugin/Discovery/YamlDiscovery.php \Drupal\Core\Plugin\Discovery\YamlDiscovery::__construct()
- 10 core/lib/Drupal/Component/Discovery/YamlDiscovery.php \Drupal\Component\Discovery\YamlDiscovery::__construct()
- 11.x core/lib/Drupal/Core/Plugin/Discovery/YamlDiscovery.php \Drupal\Core\Plugin\Discovery\YamlDiscovery::__construct()
- 11.x core/lib/Drupal/Component/Discovery/YamlDiscovery.php \Drupal\Component\Discovery\YamlDiscovery::__construct()
Construct a YamlDiscovery object.
Parameters
string $name: The file name suffix to use for discovery; for example, 'test' will become 'MODULE.test.yml'.
array $directories: An array of directories to scan.
1 call to YamlDiscovery::__construct()
- YamlDiscoveryDecorator::__construct in core/
lib/ Drupal/ Core/ Plugin/ Discovery/ YamlDiscoveryDecorator.php - Constructs a YamlDiscoveryDecorator object.
2 methods override YamlDiscovery::__construct()
- YamlDirectoryDiscovery::__construct in core/
lib/ Drupal/ Core/ Plugin/ Discovery/ YamlDirectoryDiscovery.php - Constructs a YamlDirectoryDiscovery object.
- YamlDiscoveryDecorator::__construct in core/
lib/ Drupal/ Core/ Plugin/ Discovery/ YamlDiscoveryDecorator.php - Constructs a YamlDiscoveryDecorator object.
File
-
core/
lib/ Drupal/ Core/ Plugin/ Discovery/ YamlDiscovery.php, line 50
Class
- YamlDiscovery
- Allows YAML files to define plugin definitions.
Namespace
Drupal\Core\Plugin\DiscoveryCode
public function __construct($name, array $directories) {
$this->discovery = new CoreYamlDiscovery($name, $directories);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.