You are here

public function ImageSelectionImageEffect::defaultConfiguration in Image Effects 8.3

Same name and namespace in other branches
  1. 8 tests/modules/image_effects_module_test/src/Plugin/ImageEffect/ImageSelectionImageEffect.php \Drupal\image_effects_module_test\Plugin\ImageEffect\ImageSelectionImageEffect::defaultConfiguration()
  2. 8.2 tests/modules/image_effects_module_test/src/Plugin/ImageEffect/ImageSelectionImageEffect.php \Drupal\image_effects_module_test\Plugin\ImageEffect\ImageSelectionImageEffect::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ImageEffectBase::defaultConfiguration

File

tests/modules/image_effects_module_test/src/Plugin/ImageEffect/ImageSelectionImageEffect.php, line 54

Class

ImageSelectionImageEffect
Test effect that uses the image selector plugin to get an image.

Namespace

Drupal\image_effects_module_test\Plugin\ImageEffect

Code

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