function video_image_theme in Video 6.2
Same name and namespace in other branches
- 6 plugins/video_image/video_image.module \video_image_theme()
Implementation of hook_theme().
File
- plugins/
video_image/ video_image.module, line 591 - Enable image support for video module.
Code
function video_image_theme() {
return array(
'video_image_teaser' => array(
'arguments' => array(
'image' => NULL,
'video' => NULL,
),
),
);
}