'; echo ''; echo ''; $id = get_parameter ('id'); /* Possible file locations */ $files = array ($config["homedir"]."/include/help/".$config["language"]."/help_".$id.".php", $config["homedir"].ENTERPRISE_DIR."/include/help/".$config["language"]."/help_".$id.".php", $config["homedir"].ENTERPRISE_DIR."/include/help/en/help_".$id.".php", $config["homedir"]."/include/help/en/help_".$id.".php"); $help_file = ''; foreach ($files as $file) { if (file_exists ($file)) { $help_file = $file; break; } } if (! $id || ! file_exists ($help_file)) { echo "
"; echo '

'; echo __('Help system error'); echo "

"; echo "No help section
"; 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 ''; echo ''; echo ""; echo '

'.__('Pandora FMS help system').'

'; echo '
'; echo '
'; echo '
'; echo '
'; require_once ($help_file); echo '
'; echo '


'; echo '
'; include ('footer.php'); ?>