student.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Student report
  5. * @package chamilo.reporting
  6. */
  7. $cidReset = true;
  8. require_once '../inc/global.inc.php';
  9. $nameTools = get_lang('Students');
  10. $export_csv = isset($_GET['export']) && $_GET['export'] == 'csv' ? true : false;
  11. $keyword = isset($_GET['keyword']) ? Security::remove_XSS($_GET['keyword']) : null;
  12. $active = isset($_GET['active']) ? intval($_GET['active']) : 1;
  13. $sleepingDays = isset($_GET['sleeping_days']) ? intval($_GET['sleeping_days']) : null;
  14. api_block_anonymous_users();
  15. $this_section = SECTION_TRACKING;
  16. $interbreadcrumb[] = array ("url" => "index.php", "name" => get_lang('MySpace'));
  17. if (isset($_GET["user_id"]) && $_GET["user_id"] != "" && !isset($_GET["type"])) {
  18. $interbreadcrumb[] = array ("url" => "teachers.php", "name" => get_lang('Teachers'));
  19. }
  20. if (isset($_GET["user_id"]) && $_GET["user_id"]!="" && isset($_GET["type"]) && $_GET["type"] == "coach") {
  21. $interbreadcrumb[] = array ("url" => "coaches.php", "name" => get_lang('Tutors'));
  22. }
  23. function get_count_users()
  24. {
  25. $keyword = isset($_GET['keyword']) ? Security::remove_XSS($_GET['keyword']) : null;
  26. $active = isset($_GET['active']) ? intval($_GET['active']) : 1;
  27. $sleepingDays = isset($_GET['sleeping_days']) ? intval($_GET['sleeping_days']) : null;
  28. $lastConnectionDate = null;
  29. if (!empty($sleepingDays)) {
  30. $lastConnectionDate = api_get_utc_datetime(strtotime($sleepingDays.' days ago'));
  31. }
  32. $count = SessionManager::getCountUserTracking(
  33. $keyword,
  34. $active,
  35. $lastConnectionDate,
  36. null,
  37. null,
  38. api_is_student_boss() ? null : STUDENT
  39. );
  40. return $count;
  41. }
  42. function get_users($from, $limit, $column, $direction)
  43. {
  44. $active = isset($_GET['active']) ? $_GET['active'] : 1;
  45. $keyword = isset($_GET['keyword']) ? Security::remove_XSS($_GET['keyword']) : null;
  46. $sleepingDays = isset($_GET['sleeping_days']) ? intval($_GET['sleeping_days']) : null;
  47. $sessionId = isset($_GET['id_session']) ? (int) $_GET['id_session'] : 0;
  48. $lastConnectionDate = null;
  49. if (!empty($sleepingDays)) {
  50. $lastConnectionDate = api_get_utc_datetime(strtotime($sleepingDays.' days ago'));
  51. }
  52. $is_western_name_order = api_is_western_name_order();
  53. $coach_id = api_get_user_id();
  54. $drhLoaded = false;
  55. if (api_is_drh()) {
  56. $column = 'u.user_id';
  57. if (api_drh_can_access_all_session_content()) {
  58. $students = SessionManager::getAllUsersFromCoursesFromAllSessionFromStatus(
  59. 'drh_all',
  60. api_get_user_id(),
  61. false,
  62. $from,
  63. $limit,
  64. $column,
  65. $direction,
  66. $keyword,
  67. $active,
  68. $lastConnectionDate,
  69. null,
  70. null,
  71. api_is_student_boss() ? null : STUDENT
  72. );
  73. $drhLoaded = true;
  74. }
  75. }
  76. if ($drhLoaded == false) {
  77. $students = UserManager::getUsersFollowedByUser(
  78. api_get_user_id(),
  79. api_is_student_boss() ? null : STUDENT,
  80. false,
  81. false,
  82. false,
  83. $from,
  84. $limit,
  85. $column,
  86. $direction,
  87. $active,
  88. $lastConnectionDate,
  89. api_is_student_boss() ? STUDENT_BOSS : COURSEMANAGER,
  90. $keyword
  91. );
  92. }
  93. $all_datas = array();
  94. foreach ($students as $student_data) {
  95. $student_id = $student_data['user_id'];
  96. if (isset($_GET['id_session'])) {
  97. $courses = Tracking :: get_course_list_in_session_from_student($student_id, $sessionId);
  98. }
  99. $avg_time_spent = $avg_student_score = $avg_student_progress = $total_assignments = $total_messages = 0;
  100. $nb_courses_student = 0;
  101. if (!empty($courses)) {
  102. foreach ($courses as $course_code) {
  103. $courseInfo = api_get_course_info($course_code);
  104. $courseId = $courseInfo['real_id'];
  105. if (CourseManager :: is_user_subscribed_in_course($student_id, $course_code, true)) {
  106. $avg_time_spent += Tracking :: get_time_spent_on_the_course($student_id, $courseId, $sessionId);
  107. $my_average = Tracking :: get_avg_student_score($student_id, $course_code);
  108. if (is_numeric($my_average)) {
  109. $avg_student_score += $my_average;
  110. }
  111. $avg_student_progress += Tracking :: get_avg_student_progress($student_id, $course_code);
  112. $total_assignments += Tracking :: count_student_assignments($student_id, $course_code);
  113. $total_messages += Tracking :: count_student_messages($student_id, $course_code);
  114. $nb_courses_student++;
  115. }
  116. }
  117. }
  118. if ($nb_courses_student > 0) {
  119. $avg_time_spent = $avg_time_spent / $nb_courses_student;
  120. $avg_student_score = $avg_student_score / $nb_courses_student;
  121. $avg_student_progress = $avg_student_progress / $nb_courses_student;
  122. } else {
  123. $avg_time_spent = null;
  124. $avg_student_score = null;
  125. $avg_student_progress = null;
  126. }
  127. $row = array();
  128. if ($is_western_name_order) {
  129. $row[] = $student_data['firstname'];
  130. $row[] = $student_data['lastname'];
  131. } else {
  132. $row[] = $student_data['lastname'];
  133. $row[] = $student_data['firstname'];
  134. }
  135. $string_date = Tracking::get_last_connection_date($student_id, true);
  136. $first_date = Tracking::get_first_connection_date($student_id);
  137. $row[] = $first_date;
  138. $row[] = $string_date;
  139. if (isset($_GET['id_coach']) && intval($_GET['id_coach']) != 0) {
  140. $detailsLink = '<a href="myStudents.php?student='.$student_id.'&id_coach='.$coach_id.'&id_session='.$sessionId.'">
  141. '.Display::return_icon('2rightarrow.png').'</a>';
  142. } else {
  143. $detailsLink = '<a href="myStudents.php?student='.$student_id.'">
  144. '.Display::return_icon('2rightarrow.png').'</a>';
  145. }
  146. $lostPasswordLink = '';
  147. if (api_is_drh() || api_is_platform_admin()) {
  148. $lostPasswordLink = '&nbsp;'.Display::url(
  149. Display::return_icon('edit.png', get_lang('Edit')),
  150. api_get_path(WEB_CODE_PATH).'mySpace/user_edit.php?user_id='.$student_id
  151. );
  152. }
  153. $row[] = $lostPasswordLink.$detailsLink;
  154. $all_datas[] = $row;
  155. }
  156. return $all_datas;
  157. }
  158. if ($export_csv) {
  159. $is_western_name_order = api_is_western_name_order(PERSON_NAME_DATA_EXPORT);
  160. } else {
  161. $is_western_name_order = api_is_western_name_order();
  162. }
  163. $sort_by_first_name = api_sort_by_first_name();
  164. $actionsLeft = '';
  165. if (api_is_drh()) {
  166. $menu_items = array(
  167. Display::url(Display::return_icon('stats.png', get_lang('MyStats'), '', ICON_SIZE_MEDIUM), api_get_path(WEB_CODE_PATH)."auth/my_progress.php" ),
  168. Display::url(Display::return_icon('user_na.png', get_lang('Students'), array(), ICON_SIZE_MEDIUM), '#'),
  169. Display::url(Display::return_icon('teacher.png', get_lang('Trainers'), array(), ICON_SIZE_MEDIUM), 'teachers.php'),
  170. Display::url(Display::return_icon('course.png', get_lang('Courses'), array(), ICON_SIZE_MEDIUM), 'course.php'),
  171. Display::url(Display::return_icon('session.png', get_lang('Sessions'), array(), ICON_SIZE_MEDIUM), 'session.php'),
  172. Display::url(
  173. Display::return_icon('skills.png', get_lang('Skills'), array(), ICON_SIZE_MEDIUM),
  174. 'skills.php'
  175. )
  176. );
  177. $nb_menu_items = count($menu_items);
  178. if ($nb_menu_items > 1) {
  179. foreach ($menu_items as $key => $item) {
  180. $actionsLeft .= $item;
  181. }
  182. }
  183. } else if (api_is_student_boss()) {
  184. $actionsLeft .= Display::url(
  185. Display::return_icon('stats.png', get_lang('MyStats'), '', ICON_SIZE_MEDIUM),
  186. api_get_path(WEB_CODE_PATH)."auth/my_progress.php"
  187. );
  188. $actionsLeft .= Display::url(
  189. Display::return_icon('user_na.png', get_lang('Students'), array(), ICON_SIZE_MEDIUM),
  190. '#'
  191. );
  192. $actionsLeft .= Display::url(
  193. Display::return_icon("statistics.png", get_lang("CompanyReport"), array(), ICON_SIZE_MEDIUM),
  194. api_get_path(WEB_CODE_PATH) . "mySpace/company_reports.php"
  195. );
  196. $actionsLeft .= Display::url(
  197. Display::return_icon(
  198. "certificate_list.png",
  199. get_lang("GradebookSeeListOfStudentsCertificates"),
  200. [],
  201. ICON_SIZE_MEDIUM
  202. ),
  203. api_get_path(WEB_CODE_PATH) . "gradebook/certificate_report.php"
  204. );
  205. }
  206. $actionsRight = '';
  207. $actionsRight .= Display::url(
  208. Display::return_icon('printer.png', get_lang('Print'), array(), ICON_SIZE_MEDIUM), 'javascript: void(0);',
  209. array('onclick'=>'javascript: window.print();')
  210. );
  211. $actionsRight .= Display::url(
  212. Display::return_icon('export_csv.png', get_lang('ExportAsCSV'), array(), ICON_SIZE_MEDIUM),
  213. api_get_self().'?export=csv&keyword='.$keyword
  214. );
  215. $toolbar = Display::toolbarAction('toolbar-student', $content = array( 0 => $actionsLeft, 1 => $actionsRight ));
  216. $table = new SortableTable(
  217. 'tracking_student',
  218. 'get_count_users',
  219. 'get_users',
  220. ($is_western_name_order xor $sort_by_first_name) ? 1 : 0,
  221. 10
  222. );
  223. $params = array(
  224. 'keyword' => $keyword,
  225. 'active' => $active,
  226. 'sleeping_days' => $sleepingDays
  227. );
  228. $table->set_additional_parameters($params);
  229. if ($is_western_name_order) {
  230. $table->set_header(0, get_lang('FirstName'), false);
  231. $table->set_header(1, get_lang('LastName'), false);
  232. } else {
  233. $table->set_header(0, get_lang('LastName'), false);
  234. $table->set_header(1, get_lang('FirstName'), false);
  235. }
  236. $table->set_header(2, get_lang('FirstLogin'), false);
  237. $table->set_header(3, get_lang('LastConnexion'), false);
  238. $table->set_header(4, get_lang('Details'), false);
  239. if ($export_csv) {
  240. if ($is_western_name_order) {
  241. $csv_header[] = array(
  242. get_lang('FirstName'),
  243. get_lang('LastName'),
  244. get_lang('FirstLogin'),
  245. get_lang('LastConnexion')
  246. );
  247. } else {
  248. $csv_header[] = array(
  249. get_lang('LastName'),
  250. get_lang('FirstName'),
  251. get_lang('FirstLogin'),
  252. get_lang('LastConnexion')
  253. );
  254. }
  255. }
  256. $form = new FormValidator('search_user', 'get', api_get_path(WEB_CODE_PATH).'mySpace/student.php');
  257. $form = Tracking::setUserSearchForm($form);
  258. $form->setDefaults($params);
  259. if ($export_csv) {
  260. // send the csv file if asked
  261. $content = $table->get_table_data();
  262. foreach ($content as &$row) {
  263. unset($row[4]);
  264. }
  265. $csv_content = array_merge($csv_header, $content);
  266. ob_end_clean();
  267. Export :: arrayToCsv($csv_content, 'reporting_student_list');
  268. exit;
  269. } else {
  270. Display::display_header($nameTools);
  271. echo $toolbar;
  272. $page_title = get_lang('Students');
  273. echo Display::page_subheader($page_title);
  274. if (isset($active)) {
  275. if ($active) {
  276. $activeLabel = get_lang('ActiveUsers');
  277. } else {
  278. $activeLabel = get_lang('InactiveUsers');
  279. }
  280. echo Display::page_subheader2($activeLabel);
  281. }
  282. $form->display();
  283. $table->display();
  284. }
  285. Display :: display_footer();