You are here

function image_url_formatter_theme in Image URL Formatter 7

Same name and namespace in other branches
  1. 8 image_url_formatter.module \image_url_formatter_theme()

Implements hook_theme().

File

./image_url_formatter.module, line 20
Add an URL formatter for image field

Code

function image_url_formatter_theme() {
  return array(
    'image_url_formatter' => array(
      'variables' => array(
        'item' => NULL,
        'path' => NULL,
        'image_style' => NULL,
        'url_type' => NULL,
      ),
    ),
  );
}