lp_stats.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 'learnpath.class.php';
  10. require_once 'resourcelinker.inc.php';
  11. require_once '../exercice/exercise.lib.php';
  12. // When origin is not set that means that the lp_stats are viewed from the "man running" icon
  13. if (!isset($origin)) {
  14. $origin = 'learnpath';
  15. }
  16. $sessionId = isset($_GET['id_session']) ? intval($_GET['id_session']) : api_get_session_id();
  17. $courseCode = isset($_GET['course']) ? intval($_GET['course']) : api_get_course_id();
  18. $userId = isset($_GET['student_id']) ? intval($_GET['student_id']) : api_get_user_id();
  19. $lpId = isset($_GET['lp_id']) ? $_GET['lp_id'] : null;
  20. $lpItemId = isset($_GET['lp_item_id']) ? $_GET['lp_item_id'] : null;
  21. $extendId = isset($_GET['extend_id']) ? $_GET['extend_id'] : null;
  22. $extendAttemptId = isset($_GET['extend_attempt_id']) ? $_GET['extend_attempt_id'] : null;
  23. $extendedAttempt = isset($_GET['extend_attempt']) ? $_GET['extend_attempt'] : null;
  24. $extendedAll = isset($_GET['extend_all']) ? $_GET['extend_all'] : null;
  25. $export = isset($_GET['export']) && $_GET['export'] == 'csv' ? true : false;
  26. $lpReportType = api_get_configuration_value('lp_show_reduced_report');
  27. $type = 'classic';
  28. if ($lpReportType) {
  29. $type = 'simple';
  30. }
  31. $courseInfo = api_get_course_info($courseCode);
  32. $output = Tracking::getLpStats(
  33. $userId,
  34. $courseInfo,
  35. $sessionId,
  36. $origin,
  37. $export,
  38. $lpId,
  39. $lpItemId,
  40. $extendId,
  41. $extendAttemptId,
  42. $extendedAttempt,
  43. $extendedAll,
  44. $type
  45. );
  46. // Origin = tracking means that teachers see that info in the Reporting tool
  47. if ($origin != 'tracking') {
  48. Display::display_reduced_header();
  49. $output .= "</body></html>";
  50. }
  51. return $output;