You are here

function inline_responsive_image_theme in Inline responsive images 7

Same name and namespace in other branches
  1. 8 inline_responsive_image.module \inline_responsive_image_theme()

Implements hook_theme().

File

./inline_responsive_image.module, line 6

Code

function inline_responsive_image_theme() {
  return array(
    'inline_responsive_image' => array(
      'variables' => array(
        'image' => '',
        'attributes' => array(),
        'caption' => '',
      ),
    ),
  );
}