';
$id = get_parameter ('id');
$help_file = $config["homedir"]."/include/help/".$config["language"]."/help_".$id.".php";
if (! $id || ! file_exists ($help_file)) {
echo "
";
echo '
';
echo __('Help system error');
echo "
";
echo "
";
echo "
";
echo '
';
echo "
";
echo '
'.__('Pandora FMS help system has been called with a help reference that currently don\'t exist. There is no help content to show.').'
';
return;
}
/* Show help */
echo '';
echo '
Pandora FMS Help System
';
echo '
';
echo '
';
echo '';
echo '
';
require_once ($help_file);
echo '
';
echo '
';
echo '
';
include ('footer.php');
?>