Mercurial > hg > isophonics-drupal-site
comparison core/modules/image/src/ImageEffectInterface.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 7a779792577d |
children |
comparison
equal
deleted
inserted
replaced
17:129ea1e6d783 | 18:af1871eacc83 |
---|---|
1 <?php | 1 <?php |
2 | 2 |
3 namespace Drupal\image; | 3 namespace Drupal\image; |
4 | 4 |
5 use Drupal\Component\Plugin\ConfigurableInterface; | |
5 use Drupal\Component\Plugin\ConfigurablePluginInterface; | 6 use Drupal\Component\Plugin\ConfigurablePluginInterface; |
7 use Drupal\Component\Plugin\DependentPluginInterface; | |
6 use Drupal\Component\Plugin\PluginInspectionInterface; | 8 use Drupal\Component\Plugin\PluginInspectionInterface; |
7 use Drupal\Core\Image\ImageInterface; | 9 use Drupal\Core\Image\ImageInterface; |
8 | 10 |
9 /** | 11 /** |
10 * Defines the interface for image effects. | 12 * Defines the interface for image effects. |
14 * @see \Drupal\image\ConfigurableImageEffectInterface | 16 * @see \Drupal\image\ConfigurableImageEffectInterface |
15 * @see \Drupal\image\ConfigurableImageEffectBase | 17 * @see \Drupal\image\ConfigurableImageEffectBase |
16 * @see \Drupal\image\ImageEffectManager | 18 * @see \Drupal\image\ImageEffectManager |
17 * @see plugin_api | 19 * @see plugin_api |
18 */ | 20 */ |
19 interface ImageEffectInterface extends PluginInspectionInterface, ConfigurablePluginInterface { | 21 interface ImageEffectInterface extends PluginInspectionInterface, ConfigurableInterface, DependentPluginInterface, ConfigurablePluginInterface { |
20 | 22 |
21 /** | 23 /** |
22 * Applies an image effect to the image object. | 24 * Applies an image effect to the image object. |
23 * | 25 * |
24 * @param \Drupal\Core\Image\ImageInterface $image | 26 * @param \Drupal\Core\Image\ImageInterface $image |