public ImageToolkitBase::getRequirements()
Gets toolkit requirements in a format suitable for hook_requirements().
Return value
array An associative requirements array as is returned by hook_requirements(). If the toolkit claims no requirements to the system, returns an empty array. The array can have arbitrary keys and they do not have to be prefixed by e.g. the module name or toolkit ID, as the system will make the keys globally unique.
Overrides ImageToolkitInterface::getRequirements
See also
File
- core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php, line 102
Class
- ImageToolkitBase
- Provides a base class for image toolkit plugins.
Namespace
Drupal\Core\ImageToolkit
Code
public function getRequirements() { return array(); }
Please login to continue.