public function ExecutablePluginBase::getConfigDefinitions in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Executable/ExecutablePluginBase.php \Drupal\Core\Executable\ExecutablePluginBase::getConfigDefinitions()
Gets an array of definitions of available configuration options.
@todo: This needs to go into an interface.
Return value
\Drupal\Core\TypedData\DataDefinitionInterface[] An array of typed data definitions describing available configuration options, keyed by option name.
File
- core/
lib/ Drupal/ Core/ Executable/ ExecutablePluginBase.php, line 22
Class
- ExecutablePluginBase
- Provides the basic architecture for executable plugins.
Namespace
Drupal\Core\ExecutableCode
public function getConfigDefinitions() {
$definition = $this
->getPluginDefinition();
if (!empty($definition['configuration'])) {
return $definition['configuration'];
}
return [];
}