You are here

function insert_video_theme in Insert Video 7

Implements hook_theme().

File

./insert_video.module, line 10
Insert support for Media module.

Code

function insert_video_theme() {
  return array(
    'video_insert_video' => array(
      'variables' => array(
        'item' => NULL,
        'style' => NULL,
        'widget' => NULL,
      ),
      'template' => 'templates/video-insert-video',
      'pattern' => 'video_insert_video[a-z0-9_]+',
    ),
  );
}