public function ImageStyleInterface::buildUrl in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/image/src/ImageStyleInterface.php \Drupal\image\ImageStyleInterface::buildUrl()
Returns the URL of this image derivative for an original image path or URI.
Parameters
string $path: The path or URI to the original image.
mixed $clean_urls: (optional) Whether clean URLs are in use.
Return value
string The absolute URL where a style image can be downloaded, suitable for use in an <img> tag. Requesting the URL will cause the image to be created.
See also
\Drupal\image\Controller\ImageStyleDownloadController::deliver()
1 method overrides ImageStyleInterface::buildUrl()
- ImageStyle::buildUrl in core/
modules/ image/ src/ Entity/ ImageStyle.php - Returns the URL of this image derivative for an original image path or URI.
File
- core/
modules/ image/ src/ ImageStyleInterface.php, line 74 - Contains \Drupal\image\ImageStyleInterface.
Class
- ImageStyleInterface
- Provides an interface defining an image style entity.
Namespace
Drupal\imageCode
public function buildUrl($path, $clean_urls = NULL);