function ImageToolkitOperationManager::getToolkitOperation
Returns a toolkit operation plugin instance.
Parameters
\Drupal\Core\ImageToolkit\ImageToolkitInterface $toolkit: The toolkit instance.
string $operation: The operation (e.g. "crop").
Return value
\Drupal\Core\ImageToolkit\ImageToolkitOperationInterface An instance of the requested toolkit operation plugin.
Overrides ImageToolkitOperationManagerInterface::getToolkitOperation
File
- 
              core/
lib/ Drupal/ Core/ ImageToolkit/ ImageToolkitOperationManager.php, line 129  
Class
- ImageToolkitOperationManager
 - Manages toolkit operation plugins.
 
Namespace
Drupal\Core\ImageToolkitCode
public function getToolkitOperation(ImageToolkitInterface $toolkit, $operation) {
  $plugin_id = $this->getToolkitOperationPluginId($toolkit, $operation);
  return $this->createInstance($plugin_id, [], $toolkit);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.