function ImageEffectBase::getConfiguration
Gets this plugin's configuration.
Return value
array An array of this plugin's configuration.
Overrides ConfigurableInterface::getConfiguration
File
-
core/
modules/ image/ src/ ImageEffectBase.php, line 130
Class
- ImageEffectBase
- Provides a base class for image effects.
Namespace
Drupal\imageCode
public function getConfiguration() {
return [
'uuid' => $this->getUuid(),
'id' => $this->getPluginId(),
'weight' => $this->getWeight(),
'data' => $this->configuration,
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.