ConfigurableImageEffectInterface.php 478 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\image;
  3. use Drupal\Core\Plugin\PluginFormInterface;
  4. /**
  5. * Defines the interface for configurable image effects.
  6. *
  7. * @see \Drupal\image\Annotation\ImageEffect
  8. * @see \Drupal\image\ConfigurableImageEffectBase
  9. * @see \Drupal\image\ImageEffectInterface
  10. * @see \Drupal\image\ImageEffectBase
  11. * @see \Drupal\image\ImageEffectManager
  12. * @see plugin_api
  13. */
  14. interface ConfigurableImageEffectInterface extends ImageEffectInterface, PluginFormInterface {
  15. }