You are here

function insert_video_insert_content in Insert Video 7

Implementation of hook_insert_content().

Just pass through to the theme function.

File

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

Code

function insert_video_insert_content($item, $style, $widget) {
  return theme('video_insert_video', array(
    'item' => $item,
    'style' => $style,
    'widget' => $widget,
  ));
}