You are here

function mediaelement_theme in MediaElement 7

Same name and namespace in other branches
  1. 8 mediaelement.module \mediaelement_theme()
  2. 7.2 mediaelement.module \mediaelement_theme()

Implements hook_theme().

File

./mediaelement.module, line 68
Provides HTML5 video and audio elements using Mediaelement.js.

Code

function mediaelement_theme() {
  return array(
    'mediaelement_video' => array(
      'variables' => array(
        'attributes' => array(),
        'settings' => array(),
        'file' => NULL,
      ),
    ),
    'mediaelement_audio' => array(
      'variables' => array(
        'attributes' => array(),
        'settings' => array(),
        'file' => NULL,
      ),
    ),
  );
}