function video_multidownload_theme in Video 6.2
Same name and namespace in other branches
- 6 plugins/video_multidownload/video_multidownload.module \video_multidownload_theme()
Implementation of hook_theme().
File
- plugins/
video_multidownload/ video_multidownload.module, line 386 - Enable multiple file download in video module.
Code
function video_multidownload_theme() {
return array(
'video_multidownload_download' => array(
'arguments' => array(
'node' => NULL,
),
),
);
}