You are here

function kaltura_get_help_html in Kaltura 6

Same name and namespace in other branches
  1. 5 kaltura.module \kaltura_get_help_html()
  2. 7.3 kaltura.module \kaltura_get_help_html()
  3. 7.2 kaltura.module \kaltura_get_help_html()
1 call to kaltura_get_help_html()
kaltura_help in ./kaltura.module

File

./kaltura.module, line 461
kaltura integration module - core functions

Code

function kaltura_get_help_html($page) {
  switch ($page) {
    case 'general':
      $filename = 'kaltura_general_help';
      break;
    case 'crossdomain':
      $filename = 'kaltura_cd_help';
      break;
  }
  $help_html = file_get_contents(drupal_get_path('module', 'kaltura') . '/kaltura_help/' . $filename . '.html');
  return $help_html;
}