Given a file name (basename), return array of info if this is a variation for this instance’s file, or false if not.
Returned array includes the following indexes:
original
(string): Original basenameurl
(string): URL to imagepath
(string): Full path + filename to imagewidth
(int): Specified width in filenameheight
(int): Specified height in filenameactualWidth
(int): Actual width when checked manuallyactualHeight
(int): Acual height when checked manuallycrop
(string): Cropping info string or blank if nonesuffix
(array): Array of suffixes
The following are only present if variation is based on another variation, and thus has a parent variation image between it and the original:
suffixAll
(array): Contains all suffixes including among parent variationsparent
(array): Variation info array of direct parent variation file
Usage
// basic usage
$bool = $pageimage->isVariation(string $basename);
// usage with all arguments
$bool = $pageimage->isVariation(string $basename, $options = []);
Arguments
Name | Type(s) | Description |
---|---|---|
basename | string | Filename to check (basename, which excludes path) |
options (optional) | array, bool | Array of options to modify behavior, or boolean to only specify
|
Return value
bool
string
array
Returns false if not a variation, or array (verbose) or string (non-verbose) of info if it is.
Hooking Pageimage::isVariation(…)
You can add your own hook events that are executed either before or after the Pageimage
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 Pageimage
method call is executed. This type of hook is especially useful for modifying arguments before they are sent to the method.
$this->addHookBefore('Pageimage::isVariation', function(HookEvent $event) {
// Get the object the event occurred on, if needed
$Pageimage = $event->object;
// Get values of arguments sent to hook (and optionally modify them)
$basename = $event->arguments(0);
$options = $event->arguments(1);
/* Your code here, perhaps modifying arguments */
// Populate back arguments (if you have modified them)
$event->arguments(0, $basename);
$event->arguments(1, $options);
});
Hooking after
The 'after' hooks are called immediately after each Pageimage
method call is executed. This type of hook is especially useful for modifying the value that was returned by the method call.
$this->addHookAfter('Pageimage::isVariation', function(HookEvent $event) {
// Get the object the event occurred on, if needed
$Pageimage = $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)
$basename = $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;
});
Pageimage methods and properties
API reference based on ProcessWire core version 3.0.236