link_goto.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This page is used to launch an event when a user clicks
  5. * on a page linked in a course.
  6. * - It gets name of URL
  7. * - It calls the event function
  8. * - It redirects the user to the linked page
  9. *
  10. * Need the liens.id, user.user_id et cours.code when called
  11. * ?link_id=$myrow[0]&link_url=$myrow[1]
  12. * url is given to avoid a new select
  13. *
  14. * @author Thomas Depraetere, Hugues Peeters, Christophe Gesch� - original versions
  15. * @package chamilo.link
  16. */
  17. /* INIT SECTION */
  18. require_once '../inc/global.inc.php';
  19. $this_section = SECTION_COURSES;
  20. $link_url = html_entity_decode(Security::remove_XSS($_GET['link_url']));
  21. $link_id = intval($_GET['link_id']);
  22. // Launch event
  23. event_link($link_id);
  24. header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
  25. header("Cache-Control: post-check=0, pre-check=0", false);
  26. header("Pragma: no-cache"); // HTTP/1.0
  27. header("Location: $link_url");
  28. // To be sure that the script stops running after the redirection
  29. exit;