help.php 678 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script displays a help window.
  5. *
  6. * @package chamilo.help
  7. */
  8. $help_name = isset($_GET['open']) ? Security::remove_XSS($_GET['open']) : null;
  9. if (empty($help_name)) {
  10. api_not_allowed(true);
  11. }
  12. ?>
  13. <a class="btn btn-default" href="<?php echo api_get_path(WEB_CODE_PATH); ?>help/faq.php">
  14. <?php echo get_lang('AccessToFaq'); ?>
  15. </a>
  16. <div class="page-header">
  17. <h3><?php echo get_lang('H'.$help_name); ?></h3>
  18. </div>
  19. <?php echo get_lang($help_name.'Content'); ?>
  20. <hr>
  21. <a class="btn btn-default" href="<?php echo api_get_path(WEB_CODE_PATH); ?>help/faq.php">
  22. <?php echo get_lang('AccessToFaq'); ?>
  23. </a>