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" => "../tracking/courseLog.php?cidReq=".$cidReq.'&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'); Display :: display_header($nameTools); $lp_id = intval($_GET['lp_id']); $sql = 'SELECT name FROM '.Database::get_course_table(TABLE_LP_MAIN).' WHERE c_id = '.$course_info['real_id'].' AND id='.$lp_id; $rs = Database::query($sql); $lp_title = Database::result($rs, 0, 0); echo '
'; echo ''.Display::return_icon('back.png',get_lang('Back'),'',ICON_SIZE_MEDIUM).''; echo ' '.Display::return_icon('printer.png',get_lang('Print'),'',ICON_SIZE_MEDIUM).''; echo ' '.Display::return_icon('export_csv.png',get_lang('ExportAsCSV'),'',ICON_SIZE_MEDIUM).''; echo '
'; echo '
'; $session_name = api_get_session_name($session_id); $table_title = ($session_name? Display::return_icon('session.png', get_lang('Session'), array(), ICON_SIZE_SMALL).' '.$session_name.' ':' '). Display::return_icon('course.png', get_lang('Course'), array(), ICON_SIZE_SMALL).' '.$course_info['name'].' '. Display::return_icon('user.png', get_lang('User'), array(), ICON_SIZE_SMALL).' '.$name; echo Display::page_header($table_title); echo Display::page_subheader('

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

'); //Needed in newscorm/lp_stats.php $list = learnpath :: get_flat_ordered_items_list($lp_id, 0, $course_info['real_id']); $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();