You are here

function kaltura_theme in Kaltura 7.2

Same name and namespace in other branches
  1. 5 kaltura.module \kaltura_theme()
  2. 6.2 kaltura.module \kaltura_theme()
  3. 6 kaltura.module \kaltura_theme()
  4. 7.3 kaltura.module \kaltura_theme()

Implements hook_theme().

File

./kaltura.module, line 209
Kaltura integration module - core functions.

Code

function kaltura_theme() {
  $themes = array(
    'kaltura_contribution_wizard_field' => array(
      'variables' => array(
        'theme_params' => NULL,
        'field_id' => NULL,
        'no_collect_entries' => NULL,
        'kshow_id' => NULL,
        'add_filter' => 1,
      ),
      'file' => 'includes/kaltura.themeing.inc',
    ),
    'kaltura_maintenance_page' => array(
      'variables' => array(
        'text' => '',
      ),
      'file' => 'includes/kaltura.themeing.inc',
    ),
  );
  return $themes;
}