function image_style_effects
7.x image.module | image_style_effects($style) |
Loads all the effects for an image style.
Parameters
array $style: An image style array containing:
- isid: The unique image style ID that contains this image effect.
Return value
array An array of image effects associated with specified image style in the format array('isid' => array()), or an empty array if the specified style has no effects.
See also
1 call to image_style_effects()
- image_styles in drupal-7.x/
modules/ image/ image.module - Gets an array of all styles and their settings.
1 string reference to 'image_style_effects'
- image_theme in drupal-7.x/
modules/ image/ image.module - Implements hook_theme().
File
- drupal-7.x/
modules/ image/ image.module, line 752 - Exposes global functionality for creating image styles.
Code
function image_style_effects($style) {
$effects = image_effects();
$style_effects = array();
foreach ($effects as $effect) {
if ($style['isid'] == $effect['isid']) {
$style_effects[$effect['ieid']] = $effect;
}
}
return $style_effects;
}