Render markup for all images here (optionally using a provided markup template string and/or image size options)
Given template string can contain any of the placeholders, which will be replaced:
{url}
or{src}
Image URL (typically used for src attribute){httpUrl}
File URL with scheme and hostname (alternate for src attribute){URL}
Same as url but with cache busting query string{HTTPURL}
Same as httpUrl but with cache busting query string{description}
or{alt}
Image description (typically used in alt attribute){tags}
File tags (might be useful in class attribute){width}
Width of image{height}
Height of image{hidpiWidth}
HiDPI width of image{hidpiHeight}
HiDPI height of image{ext}
File extension{original.name}
Replace “name” with any of the properties above to refer to original/full-size image. If there is no original image then these just refer back to the current image.
Available since version 3.0.126.
Example
// default output
echo $page->images->render();
// custom output
echo $page->images->render("<img class='pw-image' src='{url}' alt='{alt}'>");
// custom output with options
echo $page->images->render("<img src='{url}' alt='{alt}'>", [ 'width' => 300 ]);
// options can go in first argument if you prefer
echo $page->images->render([ 'width' => 300, 'height' => 200 ]);
// if only width/height are needed, they can also be specified as a string (1st or 2nd arg)
echo $page->images->render('300x200');
// custom output with link to original/full-size and square crop of 300x300 for thumbnails
echo "<ul>" . $page->images->render([
'markup' => "<li><a href='{original.url}'><img src='{url}' alt='{alt}'></a></li>",
'width' => 300,
'height' => 300
]) . "</ul>";
Usage
// basic usage
$string = $pageimages->render();
// usage with all arguments
$string = $pageimages->render($markup = '', $options = []);
Arguments
Name | Type(s) | Description |
---|---|---|
markup (optional) | string, array | Markup template string or optional $options array if you do not want the template string here. |
options (optional) | array, string | Optionally resize image with these options sent to size() method:
|
Return value
string
Hooking Pageimages::render(…)
You can add your own hook events that are executed either before or after the Pageimages
method is executed. Examples of both are included below. A good place for hook code such as this is in your /site/ready.php file.
Hooking before
The 'before' hooks are called immediately before each Pageimages
method call is executed. This type of hook is especially useful for modifying arguments before they are sent to the method.
$this->addHookBefore('Pageimages::render', function(HookEvent $event) {
// Get the object the event occurred on, if needed
$Pageimages = $event->object;
// Get values of arguments sent to hook (and optionally modify them)
$markup = $event->arguments(0);
$options = $event->arguments(1);
/* Your code here, perhaps modifying arguments */
// Populate back arguments (if you have modified them)
$event->arguments(0, $markup);
$event->arguments(1, $options);
});
Hooking after
The 'after' hooks are called immediately after each Pageimages
method call is executed. This type of hook is especially useful for modifying the value that was returned by the method call.
$this->addHookAfter('Pageimages::render', function(HookEvent $event) {
// Get the object the event occurred on, if needed
$Pageimages = $event->object;
// An 'after' hook can retrieve and/or modify the return value
$return = $event->return;
// Get values of arguments sent to hook (if needed)
$markup = $event->arguments(0);
$options = $event->arguments(1);
/* Your code here, perhaps modifying the return value */
// Populate back return value, if you have modified it
$event->return = $return;
});
Pageimages methods and properties
API reference based on ProcessWire core version 3.0.236