help.php 689 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script displays a help window.
  5. *
  6. * @package chamilo.help
  7. */
  8. /**
  9. * Code
  10. */
  11. // Language file that needs to be included
  12. $language_file = 'help';
  13. require_once '../inc/global.inc.php';
  14. $help_name = Security::remove_XSS($_GET['open']);
  15. ?>
  16. <a class="btn" href="<?php echo api_get_path(WEB_CODE_PATH); ?>help/faq.php"><?php echo get_lang('AccessToFaq'); ?></a>
  17. <div class="page-header">
  18. <h3><?php echo get_lang('H'.$help_name); ?></h3>
  19. </div>
  20. <?php echo get_lang($help_name.'Content'); ?>
  21. <hr>
  22. <a class="btn" href="<?php echo api_get_path(WEB_CODE_PATH); ?>help/faq.php"><?php echo get_lang('AccessToFaq'); ?></a>