function inline_responsive_image_theme in Inline responsive images 8
Same name and namespace in other branches
- 7 inline_responsive_image.module \inline_responsive_image_theme()
Implements hook_theme().
File
- ./
inline_responsive_image.module, line 9
Code
function inline_responsive_image_theme() {
return array(
'inline_responsive_image' => array(
'variables' => array(
'image' => '',
'attributes' => array(),
'caption' => '',
),
),
);
}