class ImageToolkit

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/ImageToolkit/Attribute/ImageToolkit.php \Drupal\Core\ImageToolkit\Attribute\ImageToolkit
  2. 11.x core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkit.php \Drupal\Core\ImageToolkit\Annotation\ImageToolkit
  3. 10 core/lib/Drupal/Core/ImageToolkit/Attribute/ImageToolkit.php \Drupal\Core\ImageToolkit\Attribute\ImageToolkit
  4. 10 core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkit.php \Drupal\Core\ImageToolkit\Annotation\ImageToolkit
  5. 8.9.x core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkit.php \Drupal\Core\ImageToolkit\Annotation\ImageToolkit

Defines a Plugin annotation object for the image toolkit plugin.

An image toolkit provides common image file manipulations like scaling, cropping, and rotating.

Plugin namespace: Plugin\ImageToolkit

For a working example, see \Drupal\system\Plugin\ImageToolkit\GDToolkit

Hierarchy

Expanded class hierarchy of ImageToolkit

See also

\Drupal\Core\ImageToolkit\Annotation\ImageToolkitOperation

\Drupal\Core\ImageToolkit\ImageToolkitInterface

\Drupal\Core\ImageToolkit\ImageToolkitBase

\Drupal\Core\ImageToolkit\ImageToolkitManager

Plugin API

Related topics

4 classes are annotated with ImageToolkit
BrokenToolkit in core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/BrokenToolkit.php
Defines a Test toolkit for image manipulation within Drupal.
DerivedToolkit in core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/DerivedToolkit.php
Provides a derivative of TestToolkit.
GDToolkit in core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php
Defines the GD2 toolkit for image manipulation within Drupal.
TestToolkit in core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/TestToolkit.php
Defines a Test toolkit for image manipulation within Drupal.

File

core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkit.php, line 26

Namespace

Drupal\Core\ImageToolkit\Annotation
View source
class ImageToolkit extends Plugin {
  
  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;
  
  /**
   * The title of the image toolkit.
   *
   * The string should be wrapped in @Translation().
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $title;

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.