public function MaskImageEffect::defaultConfiguration in Image Effects 8
Same name and namespace in other branches
- 8.3 src/Plugin/ImageEffect/MaskImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\MaskImageEffect::defaultConfiguration()
- 8.2 src/Plugin/ImageEffect/MaskImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\MaskImageEffect::defaultConfiguration()
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides ImageEffectBase::defaultConfiguration
File
- src/
Plugin/ ImageEffect/ MaskImageEffect.php, line 81
Class
- MaskImageEffect
- Class MaskImageEffect.
Namespace
Drupal\image_effects\Plugin\ImageEffectCode
public function defaultConfiguration() {
return [
'mask_image' => '',
'mask_width' => NULL,
'mask_height' => NULL,
'placement' => 'center-center',
'x_offset' => NULL,
'y_offset' => NULL,
] + parent::defaultConfiguration();
}