function image_style_effects

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

image_effects()

1 call to image_style_effects()
image_styles in modules/image/image.module
Gets an array of all styles and their settings.

File

modules/image/image.module, line 762

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.