You are here

function video_filter_theme in Video Filter 6.2

Same name and namespace in other branches
  1. 8 video_filter.module \video_filter_theme()
  2. 6.3 video_filter.module \video_filter_theme()
  3. 7.3 video_filter.module \video_filter_theme()

Implementation of hook_theme().

File

./video_filter.module, line 286

Code

function video_filter_theme($existing, $type, $theme, $path) {
  return array(
    'video_filter_flash' => array(
      'arguments' => array(
        'video' => NULL,
        'params' => array(),
      ),
    ),
  );
}