You are here

function image_desaturate_formatter_theme in Image desaturate formatter 8

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

Implements hook_theme().

File

./image_desaturate_formatter.module, line 10
Code for the Image desaturate formatter module.

Code

function image_desaturate_formatter_theme() {
  return array(
    'image_desaturate_formatter' => array(
      'variables' => array(
        'item' => NULL,
        'image_style' => NULL,
        'path' => NULL,
        'default_style' => 'desaturate',
      ),
    ),
  );
}