You are here

function video_multidownload_theme in Video 6

Same name and namespace in other branches
  1. 6.2 plugins/video_multidownload/video_multidownload.module \video_multidownload_theme()

Implementation of hook_theme().

File

plugins/video_multidownload/video_multidownload.module, line 387
Enable multiple file download in video module.

Code

function video_multidownload_theme() {
  return array(
    'video_multidownload_download' => array(
      'arguments' => array(
        'node' => NULL,
      ),
    ),
  );
}