You are here

function videojs_theme in Video.js (HTML5 Video Player) 8

Same name and namespace in other branches
  1. 6.2 videojs.module \videojs_theme()
  2. 6 videojs.module \videojs_theme()
  3. 7.3 videojs.module \videojs_theme()
  4. 7 videojs.module \videojs_theme()
  5. 7.2 videojs.module \videojs_theme()

Implements hook_theme().

File

./videojs.module, line 17
Exposes global functionality for video.js fields.

Code

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