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 drupal/modules/image/image.module
Gets an array of all styles and their settings.

File

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