function TestDataTypeDeriver::getDerivativeDefinitions
Overrides DeriverBase::getDerivativeDefinitions
File
-
core/
tests/ Drupal/ Tests/ Core/ Plugin/ Fixtures/ Plugin/ DataType/ TestDataTypeDeriver.php, line 17
Class
- TestDataTypeDeriver
- Provides a deriver that returns a plugin for the bare ID and one variant.
Namespace
Drupal\Tests\Core\Plugin\Fixtures\Plugin\DataTypeCode
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ([
'',
'a_variant',
] as $item) {
$this->derivatives[$item] = $base_plugin_definition;
$this->derivatives[$item]['provider'] = 'core';
}
return $this->derivatives;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.