public ImageEffectBase::getConfiguration()
Gets this plugin's configuration.
Return value
array An array of this plugin's configuration.
Overrides ConfigurablePluginInterface::getConfiguration
File
- core/modules/image/src/ImageEffectBase.php, line 130
Class
- ImageEffectBase
- Provides a base class for image effects.
Namespace
Drupal\image
Code
1 2 3 4 5 6 7 8 | public function getConfiguration() { return array ( 'uuid' => $this ->getUuid(), 'id' => $this ->getPluginId(), 'weight' => $this ->getWeight(), 'data' => $this ->configuration, ); } |
Please login to continue.