You are here

function video_theme in Video 8

Same name and namespace in other branches
  1. 8.2 video.module \video_theme()
  2. 6.5 video.module \video_theme()
  3. 6 video.module \video_theme()
  4. 6.2 video.module \video_theme()
  5. 6.4 video.module \video_theme()
  6. 7.2 video.module \video_theme()
  7. 7 video.module \video_theme()

Implements hook_theme().

File

./video.module, line 15
Exposes global functionality for video fields.

Code

function video_theme() {
  return array(
    'video_player_formatter' => array(
      'variables' => array(
        'items' => NULL,
        'player_attributes' => NULL,
      ),
    ),
  );
}