lp_stats.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script displays statistics on the current learning path (scorm)
  5. * This script must be included by lp_controller.php to get basic initialisation
  6. * @package chamilo.learnpath
  7. * @author Yannick Warnier <ywarnier@beeznest.org>
  8. */
  9. require_once '../inc/global.inc.php';
  10. // When origin is not set that means that the lp_stats are viewed from the "man running" icon
  11. if (!isset($origin)) {
  12. $origin = 'learnpath';
  13. }
  14. $sessionId = isset($_GET['id_session']) ? intval($_GET['id_session']) : api_get_session_id();
  15. $courseCode = isset($_GET['course']) ? intval($_GET['course']) : api_get_course_id();
  16. $userId = isset($_GET['student_id']) ? intval($_GET['student_id']) : api_get_user_id();
  17. $lpId = isset($_GET['lp_id']) ? $_GET['lp_id'] : null;
  18. $lpItemId = isset($_GET['lp_item_id']) ? $_GET['lp_item_id'] : null;
  19. $extendId = isset($_GET['extend_id']) ? $_GET['extend_id'] : null;
  20. $extendAttemptId = isset($_GET['extend_attempt_id']) ? $_GET['extend_attempt_id'] : null;
  21. $extendedAttempt = isset($_GET['extend_attempt']) ? $_GET['extend_attempt'] : null;
  22. $extendedAll = isset($_GET['extend_all']) ? $_GET['extend_all'] : null;
  23. $export = isset($_GET['export']) && $_GET['export'] == 'csv' ? true : false;
  24. $lpReportType = api_get_setting('lp_show_reduced_report');
  25. $type = 'classic';
  26. if ($lpReportType === 'true') {
  27. $type = 'simple';
  28. }
  29. $courseInfo = api_get_course_info($courseCode);
  30. $output = Tracking::getLpStats(
  31. $userId,
  32. $courseInfo,
  33. $sessionId,
  34. $origin,
  35. $export,
  36. $lpId,
  37. $lpItemId,
  38. $extendId,
  39. $extendAttemptId,
  40. $extendedAttempt,
  41. $extendedAll,
  42. $type
  43. );
  44. // Origin = tracking means that teachers see that info in the Reporting tool
  45. if ($origin != 'tracking') {
  46. Display::display_reduced_header();
  47. $output .= "</body></html>";
  48. }
  49. return $output;