You are here

function image_desaturate_formatter_library in Image desaturate formatter 7

Same name and namespace in other branches
  1. 7.2 image_desaturate_formatter.module \image_desaturate_formatter_library()

Implements hook_library().

File

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

Code

function image_desaturate_formatter_library() {
  $libraries['image-desaturate-formatter'] = array(
    'title' => 'Image desaturate Formatter',
    'version' => '1',
    'css' => array(
      drupal_get_path('module', 'image_desaturate_formatter') . '/library/image_desaturate_formatter.css' => array(),
    ),
  );
  return $libraries;
}