You are here

public function ConvertImageEffect::defaultConfiguration in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php \Drupal\image\Plugin\ImageEffect\ConvertImageEffect::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ImageEffectBase::defaultConfiguration

File

core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php, line 53

Class

ConvertImageEffect
Converts an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

public function defaultConfiguration() {
  return [
    'extension' => NULL,
  ];
}