You are here

function linkimagefield_theme in Link Image Field 7

Same name and namespace in other branches
  1. 8 linkimagefield.module \linkimagefield_theme()
  2. 6 linkimagefield.module \linkimagefield_theme()

Implements hook_theme().

File

./linkimagefield.module, line 350
Defines a link image field type.

Code

function linkimagefield_theme() {
  return array(
    'linkimage_formatter' => array(
      'variables' => array(
        'item' => NULL,
        'path' => NULL,
        'image_style' => NULL,
      ),
    ),
  );
}