Provides a base class for image toolkit operation plugins.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTrait
- class \Drupal\Core\ImageToolkit\ImageToolkitOperationBase implements ImageToolkitOperationInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTrait
See also
\Drupal\Core\ImageToolkit\Annotation\ImageToolkitOperation
\Drupal\Core\ImageToolkit\ImageToolkitOperationInterface
\Drupal\Core\ImageToolkit\ImageToolkitOperationManager
Plugin API
File
- core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php, line 17
Namespace
Drupal\Core\ImageToolkit
Members
Name | Modifiers | Type | Description |
---|---|---|---|
DependencySerializationTrait::$_serviceIds | protected | property | An array of service IDs keyed by property name used for serialization. |
DependencySerializationTrait::__sleep | public | function | |
DependencySerializationTrait::__wakeup | public | function | |
ImageToolkitOperationBase::$logger | protected | property | A logger instance. |
ImageToolkitOperationBase::$toolkit | protected | property | The image toolkit. |
ImageToolkitOperationBase::apply | public final | function | Applies a toolkit specific operation to an image. Overrides ImageToolkitOperationInterface::apply |
ImageToolkitOperationBase::arguments | abstract protected | function | Returns the definition of the operation arguments. |
ImageToolkitOperationBase::execute | abstract protected | function | Performs the actual manipulation on the image. |
ImageToolkitOperationBase::getToolkit | protected | function | Returns the image toolkit instance for this operation. |
ImageToolkitOperationBase::prepareArguments | protected | function | Checks if required arguments are passed in and adds defaults for non passed in optional arguments. |
ImageToolkitOperationBase::validateArguments | protected | function | Validates the arguments. |
ImageToolkitOperationBase::__construct | public | function | Constructs an image toolkit operation plugin. Overrides PluginBase::__construct |
PluginBase::$configuration | protected | property | Configuration information passed into the plugin. |
PluginBase::$pluginDefinition | protected | property | The plugin implementation definition. |
PluginBase::$pluginId | protected | property | The plugin_id. |
PluginBase::DERIVATIVE_SEPARATOR | constant | A string which is used to separate base plugin IDs from the derivative ID. | |
PluginBase::getBaseId | public | function | Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId |
PluginBase::getDerivativeId | public | function | Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId |
PluginBase::getPluginDefinition | public | function | Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition |
PluginBase::getPluginId | public | function | Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId |
StringTranslationTrait::$stringTranslation | protected | property | The string translation service. |
StringTranslationTrait::formatPlural | protected | function | Formats a string containing a count of items. |
StringTranslationTrait::getNumberOfPlurals | protected | function | Returns the number of plurals supported by a given language. |
StringTranslationTrait::getStringTranslation | protected | function | Gets the string translation service. |
StringTranslationTrait::setStringTranslation | public | function | Sets the string translation service to use. |
StringTranslationTrait::t | protected | function | Translates a string to the current language or to a given language. |
Please login to continue.