class TestDerivativeDiscovery in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Plugin/Discovery/TestDerivativeDiscovery.php \Drupal\Tests\Core\Plugin\Discovery\TestDerivativeDiscovery
Defines test derivative discovery.
Hierarchy
- class \Drupal\Tests\Core\Plugin\Discovery\TestDerivativeDiscovery implements DeriverInterface
Expanded class hierarchy of TestDerivativeDiscovery
File
- core/
tests/ Drupal/ Tests/ Core/ Plugin/ Discovery/ TestDerivativeDiscovery.php, line 15 - Contains \Drupal\Tests\Core\Plugin\Discovery\TestDerivativeDiscovery.
Namespace
Drupal\Tests\Core\Plugin\DiscoveryView source
class TestDerivativeDiscovery implements DeriverInterface {
/**
* {@inheritdoc}
*/
public function getDerivativeDefinition($derivative_id, $base_plugin_definition) {
$definitions = $this
->getDerivativeDefinitions($base_plugin_definition);
return $definitions[$derivative_id];
}
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
$plugins = array();
for ($i = 0; $i < 2; $i++) {
$plugins['test_discovery_' . $i] = $base_plugin_definition;
}
return $plugins;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TestDerivativeDiscovery:: |
public | function |
Gets the definition of a derivative plugin. Overrides DeriverInterface:: |
|
TestDerivativeDiscovery:: |
public | function |
Gets the definition of all derivatives of a base plugin. Overrides DeriverInterface:: |