ImageToolkitForm::validateForm |
function |
core/modules/system/src/Form/ImageToolkitForm.php |
Form validation handler. |
ImageToolkitForm::__construct |
function |
core/modules/system/src/Form/ImageToolkitForm.php |
Constructs an ImageToolkitForm object. |
ImageToolkitInterface |
interface |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Defines an interface for image toolkits. |
ImageToolkitInterface.php |
file |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
|
ImageToolkitInterface::apply |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Applies a toolkit operation to an image. |
ImageToolkitInterface::getHeight |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Returns the height of the image. |
ImageToolkitInterface::getMimeType |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Returns the MIME type of the image file. |
ImageToolkitInterface::getRequirements |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Gets toolkit requirements in a format suitable for hook_requirements(). |
ImageToolkitInterface::getSource |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Gets the source path of the image file. |
ImageToolkitInterface::getSupportedExtensions |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Returns a list of image file extensions supported by the toolkit. |
ImageToolkitInterface::getWidth |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Returns the width of the image. |
ImageToolkitInterface::isAvailable |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Verifies that the Image Toolkit is set up correctly. |
ImageToolkitInterface::isValid |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Checks if the image is valid. |
ImageToolkitInterface::parseFile |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Determines if a file contains a valid image. |
ImageToolkitInterface::save |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Writes an image resource to a destination file. |
ImageToolkitInterface::setSource |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php |
Sets the source path of the image file. |
ImageToolkitManager |
class |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitManager.php |
Manages image toolkit plugins. |
ImageToolkitManager.php |
file |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitManager.php |
|
ImageToolkitManager::$configFactory |
property |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitManager.php |
The config factory. |
ImageToolkitManager::getAvailableToolkits |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitManager.php |
Gets a list of available toolkits. |
ImageToolkitManager::getDefaultToolkit |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitManager.php |
Gets the default image toolkit. |
ImageToolkitManager::getDefaultToolkitId |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitManager.php |
Gets the default image toolkit ID. |
ImageToolkitManager::__construct |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitManager.php |
Constructs the ImageToolkitManager object. |
ImageToolkitOperation |
class |
core/lib/Drupal/Core/ImageToolkit/Attribute/ImageToolkitOperation.php |
Defines a Plugin attribute for the image toolkit plugin. |
ImageToolkitOperation |
class |
core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php |
Defines a Plugin annotation object for the image toolkit operation plugin. |
ImageToolkitOperation.php |
file |
core/lib/Drupal/Core/ImageToolkit/Attribute/ImageToolkitOperation.php |
|
ImageToolkitOperation.php |
file |
core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php |
|
ImageToolkitOperation::$description |
property |
core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php |
The description of the image toolkit operation. |
ImageToolkitOperation::$id |
property |
core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php |
The plugin ID. |
ImageToolkitOperation::$label |
property |
core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php |
The human-readable name of the image toolkit operation. |
ImageToolkitOperation::$operation |
property |
core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php |
The machine name of the image toolkit operation implemented (e.g. "crop"). |
ImageToolkitOperation::$toolkit |
property |
core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php |
The id of the image toolkit plugin for which the operation is implemented. |
ImageToolkitOperation::__construct |
function |
core/lib/Drupal/Core/ImageToolkit/Attribute/ImageToolkitOperation.php |
Constructs a new ImageToolkitOperation instance. |
ImageToolkitOperationBase |
class |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Provides a base class for image toolkit operation plugins. |
ImageToolkitOperationBase.php |
file |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
|
ImageToolkitOperationBase::$logger |
property |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
A logger instance. |
ImageToolkitOperationBase::$toolkit |
property |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
The image toolkit. |
ImageToolkitOperationBase::apply |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Applies a toolkit specific operation to an image. |
ImageToolkitOperationBase::arguments |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Returns the definition of the operation arguments. |
ImageToolkitOperationBase::execute |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Performs the actual manipulation on the image. |
ImageToolkitOperationBase::getToolkit |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Returns the image toolkit instance for this operation. |
ImageToolkitOperationBase::prepareArguments |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Checks for required arguments and adds optional argument defaults. |
ImageToolkitOperationBase::validateArguments |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Validates the arguments. |
ImageToolkitOperationBase::__construct |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationBase.php |
Constructs an image toolkit operation plugin. |
ImageToolkitOperationInterface |
interface |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationInterface.php |
Defines an interface for image toolkit operations. |
ImageToolkitOperationInterface.php |
file |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationInterface.php |
|
ImageToolkitOperationInterface::apply |
function |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationInterface.php |
Applies a toolkit specific operation to an image. |
ImageToolkitOperationManager |
class |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationManager.php |
Manages toolkit operation plugins. |
ImageToolkitOperationManager.php |
file |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationManager.php |
|
ImageToolkitOperationManager::$logger |
property |
core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationManager.php |
A logger instance. |