mediamosa_maintenance_browse_help($path, $arg)Implements hook_help().
sites/all/modules/mediamosa/maintenance/browse/mediamosa_maintenance_browse.module, line 100
<?php
function mediamosa_maintenance_browse_help($path, $arg) {
global $base_url;
switch ($path) {
case 'admin/mediamosa/browse':
return '<p>' . t('The browse section allows you to browse the MediaMosa database.') . '</p>';
case 'admin/mediamosa/browse/log':
return '<p>' . t('The MediaMosa log is a list of recorded events containing usage data, performance data, errors, warnings and operational information. Besides checking the MediaMosa status page, it\'s also vital to check the MediaMosa report on a regular basis.') . '</p>';
case 'admin/mediamosa/browse/restcall':
return '<p>' . t('The REST call browser allows you to view all REST calls and their properties.') . '</p>';
case 'admin/mediamosa/browse/revision':
return '<p>' . t('The revision log is a list of changes made on the configuration of MediaMosa. You can view changes made on transcode profiles, client applications, servers and global settings.') . '</p>';
case 'admin/mediamosa/browse/errorcode':
return '<p>' . t('This list show the translation of a MediaMosa error name and code to error message. MediaMosa error name and code can not be changed.') . '</p>';
case 'admin/mediamosa/browse/testing':
return '<p>' . t('Run our MediaMosa tests against MediaMosa core and MediaMosa modules. These tests help assure that MediaMosa is working as designed.') . '</p>';
}
}
?>