api_get_path(WEB_COURSE_PATH).$course_info['directory'], 'name' => $course_info['name']); $interbreadcrumb[] = array ("url" => "../user/user.php?cidReq=".$cidReq, "name" => get_lang("Users")); } else if(!empty($_GET['origin']) && $_GET['origin'] == 'tracking_course') { // $interbreadcrumb[] = array ("url" => api_get_path(WEB_COURSE_PATH).$course_info['directory'], 'name' => $course_info['name']); $interbreadcrumb[] = array ("url" => "../tracking/courseLog.php?cidReq=".$cidReq.'&studentlist=true&id_session='.$session_id, "name" => get_lang("Tracking")); } else { $interbreadcrumb[] = array ("url" => "index.php", "name" => get_lang('MySpace')); $interbreadcrumb[] = array ("url" => "student.php", "name" => get_lang("MyStudents")); $interbreadcrumb[] = array ("url" => "myStudents.php?student=".Security::remove_XSS($_GET['student_id']), "name" => get_lang("StudentDetails")); $nameTools=get_lang("DetailsStudentInCourse"); } $interbreadcrumb[] = array("url" => "myStudents.php?student=".Security::remove_XSS($_GET['student_id'])."&course=".$cidReq."&details=true&origin=".Security::remove_XSS($_GET['origin']) , "name" => get_lang("DetailsStudentInCourse")); $nameTools = get_lang('LearningPathDetails'); $htmlHeadXtra[] = ' '; Display :: display_header($nameTools); $lp_id = intval($_GET['lp_id']); $sql = 'SELECT name FROM '.Database::get_course_table(TABLE_LP_MAIN, $course_info['db_name']).' WHERE id='.$lp_id; $rs = Database::query($sql); $lp_title = Database::result($rs, 0, 0); echo '
'; echo ''.Display::return_icon('back.png',get_lang('Back'),'','32').''; echo ' '.Display::return_icon('printer.png',get_lang('Print'),'','32').''; echo ' '.Display::return_icon('export_csv.png',get_lang('ExportAsCSV'),'','32').''; echo '
'; echo '
'; $session_name = api_get_session_name($session_id); $table_title = ($session_name? Display::return_icon('session.png', get_lang('Session'), array(), 22).' '.$session_name.' ':' '). Display::return_icon('course.png', get_lang('Course'), array(), 22).' '.$course_info['name'].' '. Display::return_icon('user.png', get_lang('User'), array(), 22).' '.$name; echo '

'.$table_title.'

'; echo '

'.Display::return_icon('learnpath.png', get_lang('ToolLearnpath'), array(), 22).' '.$lp_title.'

'; $list = learnpath :: get_flat_ordered_items_list($lp_id, 0, $course_info['db_name']); $origin = 'tracking'; if ($export_csv) { require_once api_get_path(SYS_CODE_PATH).'newscorm/lp_stats.php'; //Export :: export_table_csv($csv_content, 'reporting_student'); } else { ob_start(); require_once api_get_path(SYS_CODE_PATH).'newscorm/lp_stats.php'; $tracking_content = ob_get_contents(); ob_end_clean(); echo api_utf8_decode($tracking_content, $charset); } Display :: display_footer();