link_goto.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. *
  16. * @package chamilo.link
  17. */
  18. require_once __DIR__.'/../inc/global.inc.php';
  19. $this_section = SECTION_COURSES;
  20. $linkId = isset($_GET['link_id']) ? $_GET['link_id'] : 0;
  21. $linkInfo = Link::getLinkInfo($linkId);
  22. if ($linkInfo) {
  23. $linkUrl = html_entity_decode(Security::remove_XSS($linkInfo['url']));
  24. // Launch event
  25. Event::event_link($linkId);
  26. header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
  27. header("Cache-Control: post-check=0, pre-check=0", false);
  28. header("Pragma: no-cache"); // HTTP/1.0
  29. header("Location: $linkUrl");
  30. exit;
  31. }