You are here

function theme_kaltura_player_title in Kaltura 7.3

Same name and namespace in other branches
  1. 7.2 plugins/field_kaltura/field_kaltura.theme.inc \theme_kaltura_player_title()

File

plugins/field_kaltura/field_kaltura.theme.inc, line 33
Themeing functions for kaltura fields.

Code

function theme_kaltura_player_title($vars) {
  $out = '<div class="kaltura">';
  $out .= '<h3 class="kaltura-title">' . check_plain($vars['title']) . '</h3>';
  $out .= '<div class="kaltura-embed">' . render($vars['embed']['html']) . '</div>';
  $out .= '</div>';
  return $out;
}