You are here

function theme_image_desaturate_formatter in Image desaturate formatter 7.2

Same name and namespace in other branches
  1. 8 image_desaturate_formatter.module \theme_image_desaturate_formatter()
  2. 7 image_desaturate_formatter.module \theme_image_desaturate_formatter()

Implements theme_image_desaturate

1 theme call to theme_image_desaturate_formatter()
image_desaturate_formatter_field_formatter_view in ./image_desaturate_formatter.module
Implements hook_field_formatter_view().

File

./image_desaturate_formatter.module, line 155
Code for the Image Desaturate Formatter module.

Code

function theme_image_desaturate_formatter($variables) {
  drupal_add_library('image_desaturate_formatter', 'image-desaturate-formatter');
  $variables['item']['attributes'] = array(
    'class' => array(
      $variables['default_style'] == 'desaturate' ? 'desaturate-formatter' : 'no-desaturate-formatter',
    ),
  );
  return theme('image_formatter', array(
    'item' => $variables['item'],
    'image_style' => $variables['image_style'],
    'path' => $variables['path'],
  ));
}