You are here

function kaltura_help in Kaltura 7.3

Same name and namespace in other branches
  1. 5 kaltura.module \kaltura_help()
  2. 6 kaltura.module \kaltura_help()
  3. 7.2 kaltura.module \kaltura_help()

Implements hook_help().

TODO: all help stuff throughout the module requires a complete overhaul, for now it is completely useless.

File

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

Code

function kaltura_help($path, $arg) {
  switch ($path) {
    case 'admin/help#kaltura':
      return kaltura_get_help_html('general');
    case 'admin/config/media/kaltura/fields-mapping':
      return '<p>' . t('This page provides a form for mapping Kaltura Media Entry fields to custom metadata fields created in KMC. So when the entries are imported from remote then the corresponding entities will have their field values filled in locally.') . '</p>';
    case 'admin/config/media/kaltura/entries/import':
      return '<p>' . t('Kaltura media entries are imported automatically on cron. This page lets you explicitly import all entries without waiting till cron will run.') . '</p>';
  }
}