class ImageEffect in Drupal 9
Same name and namespace in other branches
- 8 core/modules/image/src/Annotation/ImageEffect.php \Drupal\image\Annotation\ImageEffect
Defines an image effect annotation object.
Plugin Namespace: Plugin\ImageEffect
For a working example, see \Drupal\image\Plugin\ImageEffect\ResizeImageEffect
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\image\Annotation\ImageEffect
Expanded class hierarchy of ImageEffect
See also
hook_image_effect_info_alter()
\Drupal\image\ConfigurableImageEffectInterface
\Drupal\image\ConfigurableImageEffectBase
\Drupal\image\ImageEffectInterface
\Drupal\image\ImageEffectManager
\Drupal\Core\ImageToolkit\Annotation\ImageToolkitOperation
Related topics
10 classes are annotated with ImageEffect
- AjaxTestImageEffect in core/
modules/ image/ tests/ modules/ image_module_test/ src/ Plugin/ ImageEffect/ AjaxTestImageEffect.php - Provides a test effect using Ajax in the configuration form.
- ConvertImageEffect in core/
modules/ image/ src/ Plugin/ ImageEffect/ ConvertImageEffect.php - Converts an image resource.
- CropImageEffect in core/
modules/ image/ src/ Plugin/ ImageEffect/ CropImageEffect.php - Crops an image resource.
- DesaturateImageEffect in core/
modules/ image/ src/ Plugin/ ImageEffect/ DesaturateImageEffect.php - Desaturates (grayscale) an image resource.
- NullTestImageEffect in core/
modules/ image/ tests/ modules/ image_module_test/ src/ Plugin/ ImageEffect/ NullTestImageEffect.php - Performs no operation on an image resource.
File
- core/
modules/ image/ src/ Annotation/ ImageEffect.php, line 26
Namespace
Drupal\image\AnnotationView source
class ImageEffect extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the image effect.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* A brief description of the image effect.
*
* This will be shown when adding or configuring this image effect.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation (optional)
*/
public $description = '';
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ImageEffect:: |
public | property | A brief description of the image effect. | |
ImageEffect:: |
public | property | The plugin ID. | |
ImageEffect:: |
public | property | The human-readable name of the image effect. | |
Plugin:: |
protected | property | The plugin definition read from the class annotation. | 1 |
Plugin:: |
public | function |
Gets the value of an annotation. Overrides AnnotationInterface:: |
5 |
Plugin:: |
public | function |
Gets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the unique ID for this annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
1 |
Plugin:: |
protected | function | Parses an annotation into its definition. | |
Plugin:: |
public | function |
Sets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Sets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function | Constructs a Plugin object. | 2 |