responsive_image_theme()
Implements hook_theme().
File
- core/modules/responsive_image/responsive_image.module, line 61
- Responsive image display formatter for image fields.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 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.