You are here

abstract class ConfigurableImageEffectBase in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/src/ConfigurableImageEffectBase.php \Drupal\image\ConfigurableImageEffectBase
  2. 9 core/modules/image/src/ConfigurableImageEffectBase.php \Drupal\image\ConfigurableImageEffectBase

Provides a base class for configurable image effects.

Hierarchy

Expanded class hierarchy of ConfigurableImageEffectBase

See also

\Drupal\image\Annotation\ImageEffect

\Drupal\image\ConfigurableImageEffectInterface

\Drupal\image\ImageEffectInterface

\Drupal\image\ImageEffectBase

\Drupal\image\ImageEffectManager

Plugin API

4 files declare their use of ConfigurableImageEffectBase
AjaxTestImageEffect.php in core/modules/image/tests/modules/image_module_test/src/Plugin/ImageEffect/AjaxTestImageEffect.php
ConvertImageEffect.php in core/modules/image/src/Plugin/ImageEffect/ConvertImageEffect.php
ResizeImageEffect.php in core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php
RotateImageEffect.php in core/modules/image/src/Plugin/ImageEffect/RotateImageEffect.php

File

core/modules/image/src/ConfigurableImageEffectBase.php, line 17

Namespace

Drupal\image
View source
abstract class ConfigurableImageEffectBase extends ImageEffectBase implements ConfigurableImageEffectInterface {

  /**
   * {@inheritdoc}
   */
  public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
  }

  /**
   * {@inheritdoc}
   */
  public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  }

}

Members