teachers.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Teacher report
  5. * @package chamilo.reporting
  6. */
  7. $cidReset = true;
  8. require_once __DIR__.'/../inc/global.inc.php';
  9. $export_csv = isset($_GET['export']) && $_GET['export'] == 'csv' ? true : false;
  10. $keyword = isset($_GET['keyword']) ? Security::remove_XSS($_GET['keyword']) : null;
  11. $active = isset($_GET['active']) ? intval($_GET['active']) : 1;
  12. $sleepingDays = isset($_GET['sleeping_days']) ? intval($_GET['sleeping_days']) : null;
  13. $nameTools = get_lang('Teachers');
  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. COURSEMANAGER
  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. if (api_drh_can_access_all_session_content()) {
  57. $students = SessionManager::getAllUsersFromCoursesFromAllSessionFromStatus(
  58. 'drh_all',
  59. api_get_user_id(),
  60. false,
  61. $from,
  62. $limit,
  63. $column,
  64. $direction,
  65. $keyword,
  66. $active,
  67. $lastConnectionDate,
  68. null,
  69. null,
  70. COURSEMANAGER
  71. );
  72. $drhLoaded = true;
  73. }
  74. }
  75. if ($drhLoaded == false) {
  76. $students = UserManager::getUsersFollowedByUser(
  77. api_get_user_id(),
  78. COURSEMANAGER,
  79. false,
  80. false,
  81. false,
  82. $from,
  83. $limit,
  84. $column,
  85. $direction,
  86. $active,
  87. $lastConnectionDate,
  88. COURSEMANAGER,
  89. $keyword
  90. );
  91. }
  92. $all_datas = array();
  93. foreach ($students as $student_data) {
  94. $student_id = $student_data['user_id'];
  95. if (isset($_GET['id_session'])) {
  96. $courses = Tracking :: get_course_list_in_session_from_student($student_id, $_GET['id_session']);
  97. }
  98. $avg_time_spent = $avg_student_score = $avg_student_progress = 0;
  99. $nb_courses_student = 0;
  100. if (!empty($courses)) {
  101. foreach ($courses as $course_code) {
  102. $courseInfo = api_get_course_info($course_code);
  103. $courseId = $courseInfo['real_id'];
  104. if (CourseManager :: is_user_subscribed_in_course($student_id, $course_code, true)) {
  105. $avg_time_spent += Tracking :: get_time_spent_on_the_course($student_id, $courseId, $_GET['id_session']);
  106. $my_average = Tracking :: get_avg_student_score($student_id, $course_code);
  107. if (is_numeric($my_average)) {
  108. $avg_student_score += $my_average;
  109. }
  110. $avg_student_progress += Tracking :: get_avg_student_progress($student_id, $course_code);
  111. $nb_courses_student++;
  112. }
  113. }
  114. }
  115. if ($nb_courses_student > 0) {
  116. $avg_time_spent = $avg_time_spent / $nb_courses_student;
  117. $avg_student_score = $avg_student_score / $nb_courses_student;
  118. $avg_student_progress = $avg_student_progress / $nb_courses_student;
  119. } else {
  120. $avg_time_spent = null;
  121. $avg_student_score = null;
  122. $avg_student_progress = null;
  123. }
  124. $row = array();
  125. if ($is_western_name_order) {
  126. $row[] = $student_data['firstname'];
  127. $row[] = $student_data['lastname'];
  128. } else {
  129. $row[] = $student_data['lastname'];
  130. $row[] = $student_data['firstname'];
  131. }
  132. $string_date = Tracking :: get_last_connection_date($student_id, true);
  133. $first_date = Tracking :: get_first_connection_date($student_id);
  134. $row[] = $first_date;
  135. $row[] = $string_date;
  136. if (isset($_GET['id_coach']) && intval($_GET['id_coach']) != 0) {
  137. $detailsLink = '<a href="myStudents.php?student='.$student_id.'&id_coach='.$coach_id.'&id_session='.$sessionId.'">
  138. '.Display::return_icon('2rightarrow.png', get_lang('Details')).'</a>';
  139. } else {
  140. $detailsLink = '<a href="myStudents.php?student='.$student_id.'">
  141. '.Display::return_icon('2rightarrow.png', get_lang('Details')).'</a>';
  142. }
  143. $row[] = $detailsLink;
  144. $all_datas[] = $row;
  145. }
  146. return $all_datas;
  147. }
  148. if ($export_csv) {
  149. $is_western_name_order = api_is_western_name_order(PERSON_NAME_DATA_EXPORT);
  150. } else {
  151. $is_western_name_order = api_is_western_name_order();
  152. }
  153. $sort_by_first_name = api_sort_by_first_name();
  154. $actionsLeft = '';
  155. if (api_is_drh()) {
  156. $menu_items = array(
  157. Display::url(Display::return_icon('stats.png', get_lang('MyStats'), '', ICON_SIZE_MEDIUM), api_get_path(WEB_CODE_PATH)."auth/my_progress.php"),
  158. Display::url(Display::return_icon('user.png', get_lang('Students'), array(), ICON_SIZE_MEDIUM), 'student.php'),
  159. Display::url(Display::return_icon('teacher_na.png', get_lang('Trainers'), array(), ICON_SIZE_MEDIUM), 'teachers.php'),
  160. Display::url(Display::return_icon('course.png', get_lang('Courses'), array(), ICON_SIZE_MEDIUM), 'course.php'),
  161. Display::url(Display::return_icon('session.png', get_lang('Sessions'), array(), ICON_SIZE_MEDIUM), 'session.php'),
  162. );
  163. $nb_menu_items = count($menu_items);
  164. if ($nb_menu_items > 1) {
  165. foreach ($menu_items as $key => $item) {
  166. $actionsLeft .= $item;
  167. }
  168. }
  169. }
  170. $actionsRight = '';
  171. $actionsRight .= Display::url(
  172. Display::return_icon('printer.png', get_lang('Print'), array(), ICON_SIZE_MEDIUM),
  173. 'javascript: void(0);',
  174. array('onclick'=>'javascript: window.print();')
  175. );
  176. $actionsRight .= Display::url(
  177. Display::return_icon('export_csv.png', get_lang('ExportAsCSV'), array(), ICON_SIZE_MEDIUM),
  178. api_get_self().'?export=csv&keyword='.$keyword
  179. );
  180. $toolbar = Display::toolbarAction('toolbar-teachers', [$actionsLeft, $actionsRight]);
  181. $table = new SortableTable(
  182. 'tracking_teachers',
  183. 'get_count_users',
  184. 'get_users',
  185. ($is_western_name_order xor $sort_by_first_name) ? 1 : 0,
  186. 10
  187. );
  188. $params = array(
  189. 'keyword' => $keyword,
  190. 'active' => $active,
  191. 'sleeping_days' => $sleepingDays
  192. );
  193. $table->set_additional_parameters($params);
  194. if ($is_western_name_order) {
  195. $table->set_header(0, get_lang('FirstName'), false);
  196. $table->set_header(1, get_lang('LastName'), false);
  197. } else {
  198. $table->set_header(0, get_lang('LastName'), false);
  199. $table->set_header(1, get_lang('FirstName'), false);
  200. }
  201. $table->set_header(2, get_lang('FirstLogin'), false);
  202. $table->set_header(3, get_lang('LastConnexion'), false);
  203. $table->set_header(4, get_lang('Details'), false);
  204. if ($export_csv) {
  205. if ($is_western_name_order) {
  206. $csv_header[] = array(
  207. get_lang('FirstName'),
  208. get_lang('LastName'),
  209. get_lang('FirstLogin'),
  210. get_lang('LastConnexion')
  211. );
  212. } else {
  213. $csv_header[] = array(
  214. get_lang('LastName'),
  215. get_lang('FirstName'),
  216. get_lang('FirstLogin'),
  217. get_lang('LastConnexion')
  218. );
  219. }
  220. }
  221. $form = new FormValidator('search_user', 'get', api_get_path(WEB_CODE_PATH).'mySpace/teachers.php');
  222. $form = Tracking::setUserSearchForm($form);
  223. $form->setDefaults($params);
  224. if ($export_csv) {
  225. // send the csv file if asked
  226. $content = $table->return_table();
  227. foreach ($content as &$row) {
  228. unset($row[4]);
  229. }
  230. $csv_content = array_merge($csv_header, $content);
  231. ob_end_clean();
  232. Export :: arrayToCsv($csv_content, 'reporting_teacher_list');
  233. exit;
  234. } else {
  235. Display::display_header($nameTools);
  236. echo $toolbar;
  237. $page_title = get_lang('Teachers');
  238. echo Display::page_subheader($page_title);
  239. if (isset($active)) {
  240. if ($active) {
  241. $activeLabel = get_lang('ActiveUsers');
  242. } else {
  243. $activeLabel = get_lang('InactiveUsers');
  244. }
  245. echo Display::page_subheader2($activeLabel);
  246. }
  247. $form->display();
  248. $table->display();
  249. }
  250. Display :: display_footer();