Mercurial > hg > cmmr2012-drupal-site
comparison core/modules/image/src/ImageEffectInterface.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
comparison
equal
deleted
inserted
replaced
4:a9cd425dd02b | 5:12f9dff5fda9 |
---|---|
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 |