responsive_image_theme()
Implements hook_theme().
File
- core/modules/responsive_image/responsive_image.module, line 61
- Responsive image display formatter for image fields.
Code
function responsive_image_theme() { return array( 'responsive_image' => array( 'variables' => array( 'uri' => NULL, 'attributes' => array(), 'responsive_image_style_id' => array(), 'height' => NULL, 'width' => NULL, ), ), 'responsive_image_formatter' => array( 'variables' => array( 'item' => NULL, 'item_attributes' => NULL, 'url' => NULL, 'responsive_image_style_id' => NULL, ), ), ); }
Please login to continue.