array( 'c_id = ? AND ' => $courseId, 'id = ?' => $lpId ) ), 'first' ); $userList = []; $showEmail = api_get_setting('show_email_addresses'); if (!empty($users)) { foreach ($users as $user) { $userInfo = api_get_user_info($user['user_id']); $lpTime = Tracking::get_time_spent_in_lp( $user['user_id'], $courseCode, array($lpId), $sessionId ); $lpScore = Tracking::get_avg_student_score( $user['user_id'], $courseCode, array($lpId), $sessionId ); $lpProgress = Tracking::get_avg_student_progress( $user['user_id'], $courseCode, array($lpId), $sessionId ); $lpLastConnection = Tracking::get_last_connection_time_in_lp( $user['user_id'], $courseCode, array($lpId), $sessionId ); $lpLastConnection = empty($lpLastConnection) ? '-' : api_convert_and_format_date( $lpLastConnection, DATE_TIME_FORMAT_LONG ); $userList[] = [ 'id' => $user['user_id'], 'first_name' => $userInfo['firstname'], 'last_name' => $userInfo['lastname'], 'email' => $showEmail === 'true' ? $userInfo['email'] : '', 'lp_time' => api_time_to_hms($lpTime), 'lp_score' => is_numeric($lpScore) ? "$lpScore%" : $lpScore, 'lp_progress' => "$lpProgress%", 'lp_last_connection' => $lpLastConnection ]; } } // View $interbreadcrumb[] = [ 'url' => api_get_path(WEB_CODE_PATH).'lp/lp_controller.php?'.api_get_cidreq(), 'name' => get_lang('LearningPaths') ]; $actions = Display::url( Display::return_icon( 'back.png', get_lang('Back'), array(), ICON_SIZE_MEDIUM ), api_get_path(WEB_CODE_PATH).'lp/lp_controller.php?'.api_get_cidreq() ); $template = new Template(get_lang('StudentScore')); $template->assign('user_list', $userList); $template->assign('session_id', api_get_session_id()); $template->assign('course_code', api_get_course_id()); $template->assign('lp_id', $lpId); $template->assign('show_email', $showEmail === 'true'); $layout = $template->get_template('learnpath/report.tpl'); $template->assign('header', $lpInfo['name']); $template->assign( 'actions', Display::toolbarAction('lp_actions', [$actions]) ); $template->assign('content', $template->fetch($layout)); $template->display_one_col_template();