You are here

public function ConvertImageEffect::defaultConfiguration in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 59
Contains \Drupal\image\Plugin\ImageEffect\ConvertImageEffect.

Class

ConvertImageEffect
Converts an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

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