You are here

public function ImageEffectBase::defaultConfiguration in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/image/src/ImageEffectBase.php \Drupal\image\ImageEffectBase::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurablePluginInterface::defaultConfiguration

1 call to ImageEffectBase::defaultConfiguration()
ImageEffectBase::setConfiguration in core/modules/image/src/ImageEffectBase.php
Sets the configuration for this plugin instance.
3 methods override ImageEffectBase::defaultConfiguration()
ConvertImageEffect::defaultConfiguration in core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php
Gets default configuration for this plugin.
ResizeImageEffect::defaultConfiguration in core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php
Gets default configuration for this plugin.
RotateImageEffect::defaultConfiguration in core/modules/image/src/Plugin/ImageEffect/RotateImageEffect.php
Gets default configuration for this plugin.

File

core/modules/image/src/ImageEffectBase.php, line 162
Contains \Drupal\image\ImageEffectBase.

Class

ImageEffectBase
Provides a base class for image effects.

Namespace

Drupal\image

Code

public function defaultConfiguration() {
  return array();
}