|
|
|
@ -83,8 +83,7 @@ function rsort_users($a, $b) |
|
|
|
|
/* MAIN CODE */ |
|
|
|
|
|
|
|
|
|
//if ($isCoach || api_is_platform_admin() || api_is_drh()) { |
|
|
|
|
if (api_is_allowed_to_create_course() || api_is_drh()) { |
|
|
|
|
|
|
|
|
|
if (api_is_allowed_to_create_course() || api_is_drh()) { |
|
|
|
|
if ($export_csv) { |
|
|
|
|
$is_western_name_order = api_is_western_name_order(PERSON_NAME_DATA_EXPORT); |
|
|
|
|
} else { |
|
|
|
@ -92,38 +91,7 @@ if (api_is_allowed_to_create_course() || api_is_drh()) { |
|
|
|
|
} |
|
|
|
|
$sort_by_first_name = api_sort_by_first_name(); |
|
|
|
|
|
|
|
|
|
if (api_is_drh()) { |
|
|
|
|
|
|
|
|
|
$title = get_lang('YourStudents'); |
|
|
|
|
if (!isset($_GET['id_session'])) { |
|
|
|
|
|
|
|
|
|
if (isset($_GET['user_id'])) { |
|
|
|
|
$user_id = intval($_GET['user_id']); |
|
|
|
|
$user_info = api_get_user_info($user_id); |
|
|
|
|
$title = api_get_person_name($user_info['firstname'], $user_info['lastname']).' : '.get_lang('Students'); |
|
|
|
|
$courses_by_teacher = CourseManager::get_course_list_of_user_as_course_admin($user_id); |
|
|
|
|
$students_by_course = array(); |
|
|
|
|
if (!empty($courses_by_teacher)) { |
|
|
|
|
foreach ($courses_by_teacher as $course) { |
|
|
|
|
$students_by_course = array_keys(CourseManager::get_student_list_from_course_code($course['course_code'])); |
|
|
|
|
if (count($students_by_course) > 0) { |
|
|
|
|
foreach ($students_by_course as $student_by_course) { |
|
|
|
|
$students[] = $student_by_course; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$students = array_unique($students); |
|
|
|
|
} else { |
|
|
|
|
$students = array_keys(UserManager::get_users_followed_by_drh(api_get_user_id() , STUDENT)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$courses_of_the_platform = CourseManager :: get_real_course_list(); |
|
|
|
|
foreach ($courses_of_the_platform as $course) { |
|
|
|
|
$courses[$course['code']] = $course['code']; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (api_is_drh()) { |
|
|
|
|
$menu_items[] = Display::url(Display::return_icon('stats.png', get_lang('MyStats'),'',32),api_get_path(WEB_CODE_PATH)."auth/my_progress.php" ); |
|
|
|
|
$menu_items[] = Display::return_icon('user_na.png', get_lang('Students'), array(), 32); |
|
|
|
|
$menu_items[] = Display::url(Display::return_icon('teacher.png', get_lang('Trainers'), array(), 32), 'teachers.php'); |
|
|
|
@ -137,13 +105,12 @@ if (api_is_allowed_to_create_course() || api_is_drh()) { |
|
|
|
|
echo $item; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (count($students) > 0) { |
|
|
|
|
|
|
|
|
|
//if (count($students) > 0) { // |
|
|
|
|
echo '<span style="float:right">'; |
|
|
|
|
echo Display::url(Display::return_icon('printer.png', get_lang('Print'), array(), 32), 'javascript: void(0);', array('onclick'=>'javascript: window.print();')); |
|
|
|
|
echo Display::url(Display::return_icon('export_csv.png', get_lang('ExportAsCSV'), array(), 32), api_get_self().'?export=xls'); |
|
|
|
|
echo Display::url(Display::return_icon('export_csv.png', get_lang('ExportAsCSV'), array(), 32), api_get_self().'?export=csv'); |
|
|
|
|
echo '</span>'; |
|
|
|
|
} |
|
|
|
|
//} |
|
|
|
|
echo '</div>'; |
|
|
|
|
echo '<h2>'.$title.'</h2>'; |
|
|
|
|
} else { |
|
|
|
@ -159,24 +126,57 @@ if (api_is_allowed_to_create_course() || api_is_drh()) { |
|
|
|
|
} else { |
|
|
|
|
$coach_id = api_get_user_id(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!isset($_GET['id_session'])) { |
|
|
|
|
//Getting courses |
|
|
|
|
$courses = CourseManager::get_course_list_as_coach($coach_id, false); |
|
|
|
|
if (isset($courses[0])) { |
|
|
|
|
$courses = $courses[0]; |
|
|
|
|
if (api_is_drh()) { |
|
|
|
|
$title = get_lang('YourStudents'); |
|
|
|
|
if (!isset($_GET['id_session'])) { |
|
|
|
|
|
|
|
|
|
if (isset($_GET['user_id'])) { |
|
|
|
|
$user_id = intval($_GET['user_id']); |
|
|
|
|
$user_info = api_get_user_info($user_id); |
|
|
|
|
$title = api_get_person_name($user_info['firstname'], $user_info['lastname']).' : '.get_lang('Students'); |
|
|
|
|
$courses_by_teacher = CourseManager::get_course_list_of_user_as_course_admin($user_id); |
|
|
|
|
$students_by_course = array(); |
|
|
|
|
if (!empty($courses_by_teacher)) { |
|
|
|
|
foreach ($courses_by_teacher as $course) { |
|
|
|
|
$students_by_course = array_keys(CourseManager::get_student_list_from_course_code($course['course_code'])); |
|
|
|
|
if (count($students_by_course) > 0) { |
|
|
|
|
foreach ($students_by_course as $student_by_course) { |
|
|
|
|
$students[] = $student_by_course; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (!empty($students)) { |
|
|
|
|
$students = array_unique($students); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$students = array_keys(UserManager::get_users_followed_by_drh(api_get_user_id() , STUDENT)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$courses_of_the_platform = CourseManager :: get_real_course_list(); |
|
|
|
|
foreach ($courses_of_the_platform as $course) { |
|
|
|
|
$courses[$course['code']] = $course['code']; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//Getting students |
|
|
|
|
$students = CourseManager::get_user_list_from_courses_as_coach($coach_id); |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
$students = Tracking :: get_student_followed_by_coach_in_a_session($_GET['id_session'], $coach_id); |
|
|
|
|
if (!isset($_GET['id_session'])) { |
|
|
|
|
//Getting courses |
|
|
|
|
$courses = CourseManager::get_course_list_as_coach($coach_id, false); |
|
|
|
|
if (isset($courses[0])) { |
|
|
|
|
$courses = $courses[0]; |
|
|
|
|
} |
|
|
|
|
//Getting students |
|
|
|
|
|
|
|
|
|
$students = CourseManager::get_user_list_from_courses_as_coach($coach_id); |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
$students = Tracking :: get_student_followed_by_coach_in_a_session($_GET['id_session'], $coach_id); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$tracking_column = isset($_GET['tracking_column']) ? $_GET['tracking_column'] : ($is_western_name_order xor $sort_by_first_name) ? 1 : 0; |
|
|
|
|
$tracking_direction = isset($_GET['tracking_direction']) ? $_GET['tracking_direction'] : DESC; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (count($students) > 0) { |
|
|
|
|
$table = new SortableTable('tracking_student', 'count_student_coached', null, ($is_western_name_order xor $sort_by_first_name) ? 1 : 0); |
|
|
|
|
if ($is_western_name_order) { |
|
|
|
@ -223,7 +223,8 @@ if (api_is_allowed_to_create_course() || api_is_drh()) { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$all_datas = array(); |
|
|
|
|
$all_datas = array(); |
|
|
|
|
|
|
|
|
|
foreach ($students as $student_id) { |
|
|
|
|
$student_data = UserManager :: get_user_info_by_id($student_id); |
|
|
|
|
if (isset($_GET['id_session'])) { |
|
|
|
|