123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385 |
- <?php
- /* For licensing terms, see /license.txt */
- use ChamiloSession as Session;
- require_once __DIR__.'/../global.inc.php';
- // 1. Setting variables needed by jqgrid
- $action = $_GET['a'];
- $page = (int) $_REQUEST['page']; //page
- $limit = (int) $_REQUEST['rows']; //quantity of rows
- // Makes max row persistence after refreshing the grid
- $savedRows = Session::read('max_rows_'.$action);
- if (empty($savedRows)) {
- Session::write('max_rows_'.$action, $limit);
- } else {
- if ($limit != $savedRows) {
- Session::write('max_rows_'.$action, $limit);
- }
- }
- $sidx = $_REQUEST['sidx']; //index (field) to filter
- $sord = $_REQUEST['sord']; //asc or desc
- $exportFilename = isset($_REQUEST['export_filename']) ? $_REQUEST['export_filename'] : '';
- if (strpos(strtolower($sidx), 'asc') !== false) {
- $sidx = str_replace(['asc', ','], '', $sidx);
- $sord = 'asc';
- }
- if (strpos(strtolower($sidx), 'desc') !== false) {
- $sidx = str_replace(['desc', ','], '', $sidx);
- $sord = 'desc';
- }
- if (!in_array($sord, ['asc', 'desc'])) {
- $sord = 'desc';
- }
- // Actions allowed to other roles.
- if (!in_array(
- $action,
- [
- 'get_exercise_results',
- 'get_exercise_results_report',
- 'get_work_student_list_overview',
- 'get_hotpotatoes_exercise_results',
- 'get_work_teacher',
- 'get_work_student',
- 'get_work_user_list',
- 'get_work_user_list_others',
- 'get_work_user_list_all',
- 'get_timelines',
- 'get_user_skill_ranking',
- 'get_usergroups',
- 'get_usergroups_teacher',
- 'get_user_course_report_resumed',
- 'get_user_course_report',
- 'get_sessions_tracking',
- 'get_sessions',
- 'get_course_announcements',
- 'course_log_events',
- 'get_learning_path_calendars',
- 'get_usergroups_users',
- 'get_calendar_users',
- 'get_exercise_categories',
- ]
- ) && !isset($_REQUEST['from_course_session'])) {
- api_protect_admin_script(true);
- } elseif (isset($_REQUEST['from_course_session']) &&
- $_REQUEST['from_course_session'] == 1
- ) {
- api_protect_teacher_script(true);
- }
- $toRemove = ['extra_access_start_date', 'extra_access_end_date'];
- // Search features
- //@todo move this in the display_class or somewhere else
- /**
- * @param string $col
- * @param string $oper
- * @param string $val
- *
- * @return string
- */
- function getWhereClause($col, $oper, $val)
- {
- $ops = [
- 'eq' => '=', //equal
- 'ne' => '<>', //not equal
- 'lt' => '<', //less than
- 'le' => '<=', //less than or equal
- 'gt' => '>', //greater than
- 'ge' => '>=', //greater than or equal
- 'bw' => 'LIKE', //begins with
- 'bn' => 'NOT LIKE', //doesn't begin with
- 'in' => 'LIKE', //is in
- 'ni' => 'NOT LIKE', //is not in
- 'ew' => 'LIKE', //ends with
- 'en' => 'NOT LIKE', //doesn't end with
- 'cn' => 'LIKE', //contains
- 'nc' => 'NOT LIKE', //doesn't contain
- ];
- if (empty($col)) {
- return '';
- }
- if ($oper == 'bw' || $oper == 'bn') {
- $val .= '%';
- }
- if ($oper == 'ew' || $oper == 'en') {
- $val = '%'.$val;
- }
- if ($oper == 'cn' || $oper == 'nc' || $oper == 'in' || $oper == 'ni') {
- $val = '%'.$val.'%';
- }
- $val = Database::escape_string($val);
- return " $col {$ops[$oper]} '$val' ";
- }
- // If there is no search request sent by jqgrid, $where should be empty
- $whereCondition = '';
- $operation = isset($_REQUEST['oper']) ? $_REQUEST['oper'] : false;
- $exportFormat = isset($_REQUEST['export_format']) ? $_REQUEST['export_format'] : 'csv';
- $searchField = isset($_REQUEST['searchField']) ? $_REQUEST['searchField'] : false;
- $searchOperator = isset($_REQUEST['searchOper']) ? $_REQUEST['searchOper'] : false;
- $searchString = isset($_REQUEST['searchString']) ? $_REQUEST['searchString'] : false;
- $search = isset($_REQUEST['_search']) ? $_REQUEST['_search'] : false;
- $forceSearch = isset($_REQUEST['_force_search']) ? $_REQUEST['_force_search'] : false;
- $extra_fields = [];
- $accessStartDate = '';
- $accessEndDate = '';
- $overwriteColumnHeaderExport = [];
- if (!empty($search)) {
- $search = 'true';
- }
- if (($search || $forceSearch) && ($search !== 'false')) {
- $whereCondition = ' 1 = 1 ';
- $whereConditionInForm = getWhereClause(
- $searchField,
- $searchOperator,
- $searchString
- );
- if (!empty($whereConditionInForm)) {
- $whereCondition .= ' AND ( ';
- $whereCondition .= ' ('.$whereConditionInForm.') ';
- }
- $filters = isset($_REQUEST['filters']) && !is_array($_REQUEST['filters']) ? json_decode($_REQUEST['filters']) : false;
- if (isset($_REQUEST['filters2'])) {
- $filters = json_decode($_REQUEST['filters2']);
- }
- if (!empty($filters)) {
- if (in_array($action, ['get_questions', 'get_sessions', 'get_sessions_tracking'])) {
- switch ($action) {
- case 'get_questions':
- $type = 'question';
- break;
- case 'get_sessions':
- case 'get_sessions_tracking':
- $type = 'session';
- break;
- }
- if (!empty($type)) {
- // Extra field.
- $extraField = new ExtraField($type);
- foreach ($filters->rules as $key => $data) {
- if (empty($data)) {
- continue;
- }
- if ($data->field === 'extra_access_start_date') {
- $accessStartDate = $data->data;
- }
- if ($data->field === 'extra_access_end_date') {
- $accessEndDate = $data->data;
- }
- if (in_array($data->field, $toRemove)) {
- unset($filters->rules[$key]);
- }
- }
- $result = $extraField->getExtraFieldRules($filters, 'extra_');
- $extra_fields = $result['extra_fields'];
- $condition_array = $result['condition_array'];
- $extraCondition = '';
- if (!empty($condition_array)) {
- $extraCondition = $filters->groupOp.' ( ';
- $extraCondition .= implode($filters->groupOp, $condition_array);
- $extraCondition .= ' ) ';
- }
- $whereCondition .= $extraCondition;
- // Question field
- $resultQuestion = $extraField->getExtraFieldRules(
- $filters,
- 'question_'
- );
- $questionFields = $resultQuestion['extra_fields'];
- $condition_array = $resultQuestion['condition_array'];
- $extraQuestionCondition = '';
- if (!empty($condition_array)) {
- $extraQuestionCondition = $filters->groupOp.' ( ';
- $extraQuestionCondition .= implode($filters->groupOp, $condition_array);
- $extraQuestionCondition .= ' ) ';
- // Remove conditions already added
- $extraQuestionCondition = str_replace(
- $extraCondition,
- '',
- $extraQuestionCondition
- );
- }
- $whereCondition .= $extraQuestionCondition;
- if (isset($filters->custom_dates)) {
- $whereCondition .= $filters->custom_dates;
- }
- }
- } elseif (!empty($filters->rules)) {
- $whereCondition .= ' AND ( ';
- $counter = 0;
- foreach ($filters->rules as $key => $rule) {
- $whereCondition .= getWhereClause(
- $rule->field,
- $rule->op,
- $rule->data
- );
- if ($counter < count($filters->rules) - 1) {
- $whereCondition .= $filters->groupOp;
- }
- $counter++;
- }
- $whereCondition .= ' ) ';
- }
- }
- if (!empty($whereConditionInForm)) {
- $whereCondition .= ' ) ';
- }
- }
- // get index row - i.e. user click to sort $sord = $_GET['sord'];
- // get the direction
- if (!$sidx) {
- $sidx = 1;
- }
- //2. Selecting the count FIRST
- //@todo rework this
- switch ($action) {
- case 'get_exercise_categories':
- $manager = new ExerciseCategoryManager();
- $courseId = isset($_REQUEST['c_id']) ? $_REQUEST['c_id'] : 0;
- $count = $manager->getCourseCount($courseId);
- break;
- case 'get_calendar_users':
- $calendarPlugin = LearningCalendarPlugin::create();
- $id = isset($_REQUEST['id']) ? $_REQUEST['id'] : 0;
- $count = $calendarPlugin->getUsersPerCalendarCount($id);
- break;
- case 'get_usergroups_users':
- $usergroup = new UserGroup();
- $usergroup->protectScript();
- $id = isset($_REQUEST['id']) ? $_REQUEST['id'] : 0;
- $count = $usergroup->getUserGroupUsers($id, true);
- break;
- case 'get_learning_path_calendars':
- $calendarPlugin = LearningCalendarPlugin::create();
- $count = $calendarPlugin->getCalendarCount();
- break;
- case 'course_log_events':
- $courseId = api_get_course_int_id();
- if (empty($courseId)) {
- exit;
- }
- $sessionId = api_get_session_id();
- if (!api_is_allowed_to_edit()) {
- exit;
- }
- $count = Statistics::getNumberOfActivities($courseId, $sessionId);
- break;
- case 'get_programmed_announcements':
- $object = new ScheduledAnnouncement();
- $count = $object->get_count();
- break;
- case 'get_group_reporting':
- $course_id = isset($_REQUEST['course_id']) ? $_REQUEST['course_id'] : null;
- $group_id = isset($_REQUEST['gidReq']) ? $_REQUEST['gidReq'] : null;
- $sessionId = isset($_REQUEST['session_id']) ? $_REQUEST['session_id'] : null;
- $count = Tracking::get_group_reporting(
- $course_id,
- $sessionId,
- $group_id,
- 'count'
- );
- break;
- case 'get_user_course_report':
- case 'get_user_course_report_resumed':
- $userNotAllowed = !api_is_student_boss() && !api_is_platform_admin(false, true);
- if ($userNotAllowed) {
- exit;
- }
- $userId = api_get_user_id();
- $sessionId = isset($_GET['session_id']) ? (int) $_GET['session_id'] : 0;
- $courseCodeList = [];
- $userIdList = [];
- $sessionIdList = [];
- $searchByGroups = false;
- if (api_is_drh()) {
- if (api_drh_can_access_all_session_content()) {
- $userList = SessionManager::getAllUsersFromCoursesFromAllSessionFromStatus(
- 'drh_all',
- api_get_user_id()
- );
- if (!empty($userList)) {
- foreach ($userList as $user) {
- $userIdList[] = $user['user_id'];
- }
- }
- $courseList = SessionManager::getAllCoursesFollowedByUser(
- api_get_user_id(),
- null
- );
- if (!empty($courseList)) {
- foreach ($courseList as $course) {
- $courseCodeList[] = $course['code'];
- }
- }
- } else {
- $userList = UserManager::get_users_followed_by_drh(api_get_user_id());
- if (!empty($userList)) {
- $userIdList = array_keys($userList);
- }
- $courseList = CourseManager::get_courses_followed_by_drh(api_get_user_id());
- if (!empty($courseList)) {
- $courseCodeList = array_keys($courseList);
- }
- }
- if (empty($userIdList) || empty($courseCodeList)) {
- exit;
- }
- } elseif (api_is_student_boss()) {
- $supervisorStudents = UserManager::getUsersFollowedByUser(
- api_get_user_id(),
- api_is_student_boss() ? null : STUDENT,
- false,
- false,
- false,
- null,
- null,
- null,
- null,
- 1,
- null,
- api_is_student_boss() ? STUDENT_BOSS : COURSEMANAGER,
- null
- );
- $supervisorStudents = array_column($supervisorStudents, 'user_id');
- //get students with course or session
- $userIdList = SessionManager::getAllUsersFromCoursesFromAllSessionFromStatus(
- 'admin',
- null,
- false,
- null,
- null,
- null,
- 'asc',
- null,
- null,
- null,
- [],
- $supervisorStudents,
- 5
- );
- $userIdList = array_column($userIdList, 'user_id');
- //get students session courses
- if ($sessionId == -1) {
- $sessionList = SessionManager::get_sessions_list();
- $sessionIdList = array_column($sessionList, 'id');
- $courseCodeList = [];
- foreach ($sessionList as $session) {
- $courses = SessionManager::get_course_list_by_session_id($session['id']);
- $courseCodeList = array_merge($courseCodeList, array_column($courses, 'code'));
- }
- }
- $searchByGroups = true;
- } elseif (api_is_platform_admin()) {
- // Get students with course or session
- $userIdList = SessionManager::getAllUsersFromCoursesFromAllSessionFromStatus(
- 'admin',
- null,
- false,
- null,
- null,
- null,
- 'asc',
- null,
- null,
- null,
- [],
- [],
- 5
- );
- $userIdList = array_column($userIdList, 'user_id');
- //get students session courses
- if ($sessionId == -1) {
- $sessionList = SessionManager::get_sessions_list();
- $sessionIdList = array_column($sessionList, 'id');
- $courseCodeList = [];
- foreach ($sessionList as $session) {
- $courses = SessionManager::get_course_list_by_session_id(
- $session['id']
- );
- $courseCodeList = array_merge(
- $courseCodeList,
- array_column($courses, 'code')
- );
- }
- }
- $searchByGroups = true;
- }
- if ($searchByGroups) {
- $userGroup = new UserGroup();
- $userIdList = array_merge(
- $userIdList,
- $userGroup->getGroupUsersByUser(api_get_user_id())
- );
- }
- if (is_array($userIdList)) {
- $userIdList = array_unique($userIdList);
- }
- if (api_is_student_boss()) {
- $userCourses = [];
- foreach ($userIdList as $userId) {
- $userCourses = array_merge(
- $userCourses,
- CourseManager::get_courses_list_by_user_id($userId, true)
- );
- $userSessions = SessionManager::getSessionsFollowedByUser($userId);
- $sessionIdList = array_merge(
- $sessionIdList,
- array_column($userSessions, 'id')
- );
- }
- $courseCodeList = array_column($userCourses, 'code');
- }
- if (!empty($courseCodeList)) {
- $courseCodeList = array_unique($courseCodeList);
- }
- if (!empty($sessionIdList)) {
- $sessionIdList = array_unique($sessionIdList);
- }
- if (api_is_student_boss() && empty($userIdList)) {
- $count = 0;
- break;
- }
- if ($action == 'get_user_course_report') {
- $count = CourseManager::get_count_user_list_from_course_code(
- false,
- null,
- $courseCodeList,
- $userIdList,
- $sessionIdList
- );
- } else {
- $count = CourseManager::get_count_user_list_from_course_code(
- true,
- ['ruc'],
- $courseCodeList,
- $userIdList,
- $sessionIdList
- );
- }
- break;
- case 'get_course_exercise_medias':
- $course_id = api_get_course_int_id();
- $count = Question::get_count_course_medias($course_id);
- break;
- case 'get_user_skill_ranking':
- $skill = new Skill();
- $count = $skill->getUserListSkillRankingCount();
- break;
- case 'get_course_announcements':
- $count = AnnouncementManager::getAnnouncements(null, null, true);
- break;
- case 'get_work_teacher':
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- $count = getWorkListTeacher(0, $limit, $sidx, $sord, $whereCondition, true);
- break;
- case 'get_work_student':
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- $count = getWorkListStudent(0, $limit, $sidx, $sord, $whereCondition, true);
- break;
- case 'get_work_user_list_all':
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- $work_id = $_REQUEST['work_id'];
- $count = get_count_work($work_id);
- break;
- case 'get_work_user_list_others':
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- $work_id = $_REQUEST['work_id'];
- $count = get_count_work($work_id, api_get_user_id());
- break;
- case 'get_work_user_list':
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- $work_id = $_REQUEST['work_id'];
- $courseInfo = api_get_course_info();
- $documents = getAllDocumentToWork($work_id, api_get_course_int_id());
- if (trim($whereCondition) === '1 = 1') {
- $whereCondition = '';
- }
- if (empty($documents)) {
- $whereCondition .= " AND u.user_id = ".api_get_user_id();
- $count = get_work_user_list(
- 0,
- $limit,
- $sidx,
- $sord,
- $work_id,
- $whereCondition,
- null,
- true
- );
- } else {
- $count = get_work_user_list_from_documents(
- 0,
- $limit,
- $sidx,
- $sord,
- $work_id,
- api_get_user_id(),
- $whereCondition,
- true
- );
- }
- break;
- case 'get_work_student_list_overview':
- if (!(api_is_allowed_to_edit() || api_is_coach())) {
- return 0;
- }
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- $workId = isset($_GET['work_id']) ? $_GET['work_id'] : null;
- $count = getWorkUserListData(
- $workId,
- api_get_course_id(),
- api_get_session_id(),
- api_get_group_id(),
- 0,
- $limit,
- null,
- null,
- true
- );
- break;
- case 'get_exercise_results':
- $exercise_id = $_REQUEST['exerciseId'];
- if (isset($_GET['filter_by_user']) && !empty($_GET['filter_by_user'])) {
- $filter_user = (int) $_GET['filter_by_user'];
- if (empty($whereCondition)) {
- $whereCondition .= " te.exe_user_id = '$filter_user'";
- } else {
- $whereCondition .= " AND te.exe_user_id = '$filter_user'";
- }
- }
- if (!empty($whereCondition)) {
- $whereCondition = " AND $whereCondition";
- }
- $count = ExerciseLib::get_count_exam_results(
- $exercise_id,
- $whereCondition
- );
- break;
- case 'get_exercise_results_report':
- api_protect_admin_script();
- $exerciseId = isset($_REQUEST['exercise_id']) ? $_REQUEST['exercise_id'] : 0;
- $courseId = isset($_REQUEST['course_id']) ? $_REQUEST['course_id'] : 0;
- if (empty($exerciseId)) {
- exit;
- }
- if (!empty($courseId)) {
- $courseInfo = api_get_course_info_by_id($courseId);
- } else {
- $courseCode = isset($_REQUEST['cidReq']) ? $_REQUEST['cidReq'] : '';
- if (!empty($courseCode)) {
- $courseInfo = api_get_course_info($courseCode);
- }
- }
- if (empty($courseInfo)) {
- exit;
- }
- $startDate = Database::escape_string($_REQUEST['start_date']);
- $whereCondition .= " AND exe_date > '$startDate' AND te.status = '' ";
- $count = ExerciseLib::get_count_exam_results(
- $exerciseId,
- $whereCondition,
- $courseInfo['code'],
- true
- );
- break;
- case 'get_hotpotatoes_exercise_results':
- $hotpot_path = $_REQUEST['path'];
- $count = ExerciseLib::get_count_exam_hotpotatoes_results($hotpot_path);
- break;
- case 'get_sessions_tracking':
- $keyword = isset($_REQUEST['keyword']) ? $_REQUEST['keyword'] : '';
- $description = '';
- $setting = api_get_setting('show_session_description');
- if ($setting === 'true') {
- $description = $keyword;
- }
- if (api_is_drh() || api_is_session_admin()) {
- $count = SessionManager::get_sessions_followed_by_drh(
- api_get_user_id(),
- null,
- null,
- true,
- false,
- false,
- null,
- $keyword,
- $description,
- ['where' => $whereCondition, 'extra' => $extra_fields]
- );
- } else {
- // Sessions for the coach
- $count = Tracking::get_sessions_coached_by_user(
- api_get_user_id(),
- null,
- null,
- true,
- $keyword,
- $description,
- null,
- null,
- ['where' => $whereCondition, 'extra' => $extra_fields]
- );
- }
- break;
- case 'get_sessions':
- $list_type = isset($_REQUEST['list_type']) ? $_REQUEST['list_type'] : 'simple';
- if ($list_type === 'simple') {
- $count = SessionManager::formatSessionsAdminForGrid(
- ['where' => $whereCondition, 'extra' => $extra_fields],
- true
- );
- } else {
- $count = SessionManager::get_count_admin_complete(
- ['where' => $whereCondition, 'extra' => $extra_fields]
- );
- }
- break;
- case 'get_session_lp_progress':
- case 'get_session_progress':
- //@TODO replace this for a more efficient function (not retrieving the whole data)
- $course = api_get_course_info_by_id($_GET['course_id']);
- $users = CourseManager::get_student_list_from_course_code(
- $course['code'],
- true,
- $_GET['session_id'],
- $_GET['date_from'],
- $_GET['date_to']
- );
- $count = count($users);
- break;
- case 'get_exercise_progress':
- //@TODO replace this for a more efficient function (not retrieving the whole data)
- $records = Tracking::get_exercise_progress(
- $_GET['session_id'],
- $_GET['course_id'],
- $_GET['exercise_id'],
- $_GET['date_from'],
- $_GET['date_to']
- );
- $count = count($records);
- break;
- case 'get_session_access_overview':
- //@TODO replace this for a more efficient function (not retrieving the whole data)
- $records = SessionManager::get_user_data_access_tracking_overview(
- $_GET['session_id'],
- $_GET['course_id'],
- $_GET['student_id'],
- $_GET['profile'],
- $_GET['date_from'],
- $_GET['date_to'],
- $options
- );
- $count = count($records);
- break;
- case 'get_survey_overview':
- //@TODO replace this for a more efficient function (not retrieving the whole data)
- $records = SessionManager::get_survey_overview(
- $_GET['session_id'],
- $_GET['course_id'],
- $_GET['survey_id'],
- $_GET['date_from'],
- $_GET['date_to'],
- $options
- );
- $count = count($records);
- break;
- case 'get_exercise_grade':
- //@TODO replace this for a more efficient function (not retrieving the whole data)
- $course = api_get_course_info_by_id($_GET['course_id']);
- $users = CourseManager::get_student_list_from_course_code(
- $course['code'],
- true,
- $_GET['session_id']
- );
- $count = count($users);
- break;
- case 'get_extra_fields':
- $type = $_REQUEST['type'];
- $obj = new ExtraField($type);
- $count = $obj->get_count();
- break;
- case 'get_extra_field_options':
- $type = $_REQUEST['type'];
- $field_id = $_REQUEST['field_id'];
- $obj = new ExtraFieldOption($type);
- $count = $obj->get_count_by_field_id($field_id);
- break;
- case 'get_timelines':
- $obj = new Timeline();
- $count = $obj->get_count();
- break;
- case 'get_gradebooks':
- $obj = new Gradebook();
- $count = $obj->get_count();
- break;
- case 'get_event_email_template':
- $obj = new EventEmailTemplate();
- $count = $obj->get_count();
- break;
- case 'get_careers':
- $obj = new Career();
- $count = $obj->get_count();
- break;
- case 'get_promotions':
- $obj = new Promotion();
- $count = $obj->get_count();
- break;
- case 'get_mail_template':
- $obj = new MailTemplateManager();
- $count = $obj->get_count();
- break;
- case 'get_grade_models':
- $obj = new GradeModel();
- $count = $obj->get_count();
- break;
- case 'get_usergroups':
- $obj = new UserGroup();
- $obj->protectScript();
- $count = $obj->get_count();
- break;
- case 'get_usergroups_teacher':
- $obj = new UserGroup();
- $obj->protectScript();
- $type = isset($_REQUEST['type']) ? $_REQUEST['type'] : 'registered';
- $groupFilter = isset($_REQUEST['group_filter']) ? (int) $_REQUEST['group_filter'] : 0;
- $course_id = api_get_course_int_id();
- if ($type === 'registered') {
- $count = $obj->getUserGroupByCourseWithDataCount(
- $course_id,
- $groupFilter
- );
- } else {
- $count = $obj->get_count($groupFilter);
- }
- break;
- default:
- exit;
- }
- //3. Calculating first, end, etc
- $total_pages = 0;
- if ($count > 0) {
- if (!empty($limit)) {
- $total_pages = ceil((float) $count / (float) $limit);
- }
- }
- if ($page > $total_pages) {
- $page = $total_pages;
- }
- $start = $limit * $page - $limit;
- if ($start < 0) {
- $start = 0;
- }
- //4. Deleting an element if the user wants to
- if (isset($_REQUEST['oper']) && $_REQUEST['oper'] == 'del') {
- $obj->delete($_REQUEST['id']);
- }
- $is_allowedToEdit = api_is_allowed_to_edit(null, true) || api_is_allowed_to_edit(true) || api_is_drh();
- //5. Querying the DB for the elements
- $columns = [];
- switch ($action) {
- case 'get_exercise_categories':
- api_protect_course_script();
- if (!api_is_allowed_to_edit()) {
- api_not_allowed(true);
- }
- $columns = ['name', 'actions'];
- $manager = new ExerciseCategoryManager();
- $result = $manager->get_all([
- 'where' => ['c_id = ? ' => $courseId],
- 'order' => "$sidx $sord",
- 'LIMIT' => "$start , $limit",
- ]);
- break;
- case 'get_calendar_users':
- $columns = ['firstname', 'lastname', 'exam'];
- $result = $calendarPlugin->getUsersPerCalendar($id);
- break;
- case 'get_usergroups_users':
- $columns = ['name', 'actions'];
- if (api_get_plugin_setting('learning_calendar', 'enabled') === 'true') {
- $columns = [
- 'name',
- 'calendar',
- 'gradebook_items',
- 'time_spent',
- 'lp_day_completed',
- 'days_diff',
- 'actions',
- 'calendar_id',
- ];
- }
- $result = $usergroup->getUserGroupUsers($id);
- break;
- case 'get_learning_path_calendars':
- $columns = ['title', 'total_hours', 'minutes_per_day', 'actions'];
- $result = $calendarPlugin->getCalendars(
- $start,
- $limit,
- $sidx,
- $sord
- );
- break;
- case 'course_log_events':
- $columns = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
- $result = Statistics::getActivitiesData(
- $start,
- $limit,
- $sidx,
- $sord,
- $courseId,
- $sessionId
- );
- break;
- case 'get_programmed_announcements':
- $columns = ['subject', 'date', 'sent', 'actions'];
- $sessionId = isset($_REQUEST['session_id']) ? (int) $_REQUEST['session_id'] : 0;
- $result = Database::select(
- '*',
- $object->table,
- [
- 'where' => ['session_id = ? ' => $sessionId],
- 'order' => "$sidx $sord",
- 'LIMIT' => "$start , $limit", ]
- );
- if ($result) {
- foreach ($result as &$item) {
- $item['sent'] = $item['sent'] == 1 ? get_lang('Yes') : get_lang('No');
- $item['date'] = api_get_local_time($item['date']);
- }
- }
- break;
- case 'get_group_reporting':
- $columns = ['name', 'time', 'progress', 'score', 'works', 'messages', 'actions'];
- $result = Tracking::get_group_reporting(
- $course_id,
- $sessionId,
- $group_id,
- 'all',
- $start,
- $limit,
- $sidx,
- $sord,
- $whereCondition
- );
- break;
- case 'get_course_exercise_medias':
- $columns = ['question'];
- $result = Question::get_course_medias(
- $course_id,
- $start,
- $limit,
- $sidx,
- $sord,
- $whereCondition
- );
- break;
- case 'get_user_course_report_resumed':
- $columns = [
- 'extra_ruc',
- 'training_hours',
- 'count_users',
- 'count_users_registered',
- 'average_hours_per_user',
- 'count_certificates',
- ];
- $column_names = [
- get_lang('Company'),
- get_lang('TrainingHoursAccumulated'),
- get_lang('CountOfSubscriptions'),
- get_lang('CountOfUsers'),
- get_lang('AverageHoursPerStudent'),
- get_lang('CountCertificates'),
- ];
- $extra_fields = UserManager::get_extra_fields(
- 0,
- 100,
- null,
- null,
- true,
- true
- );
- if (!empty($extra_fields)) {
- foreach ($extra_fields as $extra) {
- if ($extra['1'] == 'ruc') {
- continue;
- }
- $columns[] = $extra['1'];
- $column_names[] = $extra['3'];
- }
- }
- if (!in_array($sidx, ['training_hours'])) {
- //$sidx = 'training_hours';
- }
- if (api_is_student_boss() && empty($userIdList)) {
- $result = [];
- break;
- }
- $result = CourseManager::get_user_list_from_course_code(
- null,
- null,
- "LIMIT $start, $limit",
- null, //" $sidx $sord",
- null,
- null,
- true,
- true,
- ['ruc'],
- $courseCodeList,
- $userIdList,
- null,
- $sessionIdList
- );
- $new_result = [];
- if (!empty($result)) {
- foreach ($result as $row) {
- $row['training_hours'] = api_time_to_hms($row['training_hours']);
- $row['average_hours_per_user'] = api_time_to_hms($row['average_hours_per_user']);
- $new_result[] = $row;
- }
- $result = $new_result;
- }
- break;
- case 'get_user_course_report':
- $columns = [
- 'course',
- 'user',
- 'email',
- 'time',
- 'certificate',
- 'progress_100',
- 'progress',
- ];
- $column_names = [
- get_lang('Course'),
- get_lang('User'),
- get_lang('Email'),
- get_lang('ManHours'),
- get_lang('CertificateGenerated'),
- get_lang('Approved'),
- get_lang('CourseAdvance'),
- ];
- $extra_fields = UserManager::get_extra_fields(
- 0,
- 100,
- null,
- null,
- true,
- true
- );
- if (!empty($extra_fields)) {
- foreach ($extra_fields as $extra) {
- $columns[] = $extra['1'];
- $column_names[] = $extra['3'];
- }
- }
- if (api_is_student_boss()) {
- $columns[] = 'group';
- $column_names[] = get_lang('Group');
- }
- if (!in_array($sidx, ['title'])) {
- $sidx = 'title';
- }
- if (api_is_student_boss() && empty($userIdList)) {
- $result = [];
- break;
- }
- //get sessions
- $arrSessions = [];
- if (count($sessionIdList) > 0) {
- $arrSessions = CourseManager::get_user_list_from_course_code(
- null,
- null,
- "LIMIT $start, $limit",
- " $sidx $sord",
- null,
- null,
- true,
- false,
- null,
- $courseCodeList,
- $userIdList,
- null,
- $sessionIdList
- );
- }
- //get courses
- $arrCourses = CourseManager::get_user_list_from_course_code(
- null,
- null,
- "LIMIT $start, $limit",
- " $sidx $sord",
- null,
- null,
- true,
- false,
- null,
- [],
- $userIdList,
- null
- );
- //merge courses and sessions
- $result = array_merge($arrSessions, $arrCourses);
- if (api_is_student_boss()) {
- $userGroup = new UserGroup();
- foreach ($result as &$item) {
- $userGroups = $userGroup->get_groups_by_user($item['user_id']);
- $item['group'] = implode(", ", array_column($userGroups, 'name'));
- unset($item['user_id']);
- }
- }
- break;
- case 'get_user_skill_ranking':
- $columns = [
- 'photo',
- 'firstname',
- 'lastname',
- 'skills_acquired',
- 'currently_learning',
- 'rank',
- ];
- $result = $skill->getUserListSkillRanking(
- $start,
- $limit,
- $sidx,
- $sord,
- $whereCondition
- );
- $result = msort($result, 'skills_acquired', 'asc');
- $skills_in_course = [];
- if (!empty($result)) {
- foreach ($result as &$item) {
- $user_info = api_get_user_info($item['user_id']);
- $personal_course_list = UserManager::get_personal_session_course_list(
- $item['user_id']
- );
- $count_skill_by_course = [];
- foreach ($personal_course_list as $course_item) {
- if (!isset($skills_in_course[$course_item['code']])) {
- $count_skill_by_course[$course_item['code']] = $skill->getCountSkillsByCourse($course_item['code']);
- $skills_in_course[$course_item['code']] = $count_skill_by_course[$course_item['code']];
- } else {
- $count_skill_by_course[$course_item['code']] = $skills_in_course[$course_item['code']];
- }
- }
- $item['photo'] = Display::img($user_info['avatar_small'], $user_info['complete_name'], [], false);
- $item['currently_learning'] = !empty($count_skill_by_course) ? array_sum($count_skill_by_course) : 0;
- }
- }
- break;
- case 'get_course_announcements':
- $columns = [
- 'title',
- 'username',
- 'insert_date',
- 'actions',
- ];
- $titleToSearch = isset($_REQUEST['title_to_search']) ? $_REQUEST['title_to_search'] : '';
- $userIdToSearch = isset($_REQUEST['user_id_to_search']) ? $_REQUEST['user_id_to_search'] : 0;
- $result = AnnouncementManager::getAnnouncements(
- null,
- null,
- false,
- $start,
- $limit,
- $sidx,
- $sord,
- $titleToSearch,
- $userIdToSearch
- );
- break;
- case 'get_work_teacher':
- $columns = [
- 'type',
- 'title',
- 'sent_date',
- 'expires_on',
- 'amount',
- 'actions',
- ];
- $result = getWorkListTeacher(
- $start,
- $limit,
- $sidx,
- $sord,
- $whereCondition
- );
- break;
- case 'get_work_student':
- $columns = [
- 'type',
- 'title',
- 'expires_on',
- 'feedback',
- 'last_upload',
- 'others',
- ];
- $result = getWorkListStudent(
- $start,
- $limit,
- $sidx,
- $sord,
- $whereCondition
- );
- break;
- case 'get_work_user_list_all':
- if (isset($_GET['type']) && $_GET['type'] === 'simple') {
- $columns = [
- 'fullname',
- 'title',
- 'qualification',
- 'sent_date',
- 'qualificator_id',
- 'correction',
- 'actions',
- ];
- } else {
- $columns = [
- 'fullname',
- 'title',
- 'qualification',
- 'sent_date',
- 'correction',
- 'actions',
- ];
- }
- $whereCondition = " AND $whereCondition ";
- $result = get_work_user_list(
- $start,
- $limit,
- $sidx,
- $sord,
- $work_id,
- $whereCondition
- );
- break;
- case 'get_work_user_list_others':
- if (isset($_GET['type']) && $_GET['type'] === 'simple') {
- $columns = [
- 'type', 'firstname', 'lastname', 'title', 'qualification', 'sent_date', 'qualificator_id', 'actions',
- ];
- } else {
- $columns = ['type', 'firstname', 'lastname', 'title', 'sent_date', 'actions'];
- }
- if (trim($whereCondition) === '1 = 1') {
- $whereCondition = '';
- }
- $whereCondition .= " AND u.user_id <> ".api_get_user_id();
- $result = get_work_user_list(
- $start,
- $limit,
- $sidx,
- $sord,
- $work_id,
- $whereCondition
- );
- break;
- case 'get_work_user_list':
- if (isset($_GET['type']) && $_GET['type'] == 'simple') {
- $columns = [
- 'type', 'title', 'qualification', 'sent_date', 'qualificator_id', 'actions',
- ];
- } else {
- $columns = ['type', 'title', 'qualification', 'sent_date', 'actions'];
- }
- $documents = getAllDocumentToWork($work_id, api_get_course_int_id());
- if (trim($whereCondition) === '1 = 1') {
- $whereCondition = '';
- }
- if (empty($documents)) {
- $whereCondition .= " AND u.user_id = ".api_get_user_id();
- $result = get_work_user_list(
- $start,
- $limit,
- $sidx,
- $sord,
- $work_id,
- $whereCondition
- );
- } else {
- $result = get_work_user_list_from_documents(
- $start,
- $limit,
- $sidx,
- $sord,
- $work_id,
- api_get_user_id(),
- $whereCondition
- );
- }
- break;
- case 'get_exercise_results':
- $course = api_get_course_info();
- // Used inside ExerciseLib::get_exam_results_data()
- $documentPath = api_get_path(SYS_COURSE_PATH).$course['path']."/document";
- $is_allowedToEdit = api_is_allowed_to_edit(null, true) ||
- api_is_drh() ||
- api_is_student_boss() ||
- api_is_session_admin();
- if ($is_allowedToEdit || api_is_student_boss()) {
- $columns = [
- 'firstname',
- 'lastname',
- 'username',
- 'group_name',
- 'exe_duration',
- 'start_date',
- 'exe_date',
- 'score',
- 'user_ip',
- 'status',
- 'lp',
- 'actions',
- ];
- $officialCodeInList = api_get_setting('show_official_code_exercise_result_list');
- if ($officialCodeInList === 'true') {
- $columns = array_merge(['official_code'], $columns);
- }
- }
- $result = ExerciseLib::get_exam_results_data(
- $start,
- $limit,
- $sidx,
- $sord,
- $exercise_id,
- $whereCondition
- );
- break;
- case 'get_exercise_results_report':
- // Used inside ExerciseLib::get_exam_results_data()
- $documentPath = api_get_path(SYS_COURSE_PATH).$courseInfo['path'].'/document';
- $sessionId = api_get_session_id();
- $columns = [
- 'firstname',
- 'lastname',
- 'username',
- ];
- $extraFieldsToAdd = [];
- $extraFields = api_get_configuration_value('exercise_category_report_user_extra_fields');
- $roundValues = api_get_configuration_value('exercise_category_round_score_in_export');
- if (!empty($extraFields) && isset($extraFields['fields'])) {
- $extraField = new ExtraField('user');
- foreach ($extraFields['fields'] as $variable) {
- $info = $extraField->get_handler_field_info_by_field_variable($variable);
- if ($info) {
- $extraFieldsToAdd[] = $variable;
- }
- }
- }
- if (!empty($extraFieldsToAdd)) {
- $columns = array_merge($columns, $extraFieldsToAdd);
- }
- $columns[] = 'session';
- $columns[] = 'session_access_start_date';
- $columns[] = 'exe_date';
- $columns[] = 'score';
- if ($operation === 'excel') {
- $columns = [
- 'firstname',
- 'lastname',
- 'username',
- ];
- if (!empty($extraFieldsToAdd)) {
- $columns = array_merge($columns, $extraFieldsToAdd);
- }
- $columns[] = 'session';
- $columns[] = 'session_access_start_date';
- $columns[] = 'exe_date';
- $columns[] = 'score_percentage';
- $columns[] = 'only_score';
- $columns[] = 'total';
- $overwriteColumnHeaderExport['session_access_start_date'] = get_lang('SessionStartDate');
- $overwriteColumnHeaderExport['exe_date'] = get_lang('StartDate');
- $overwriteColumnHeaderExport['score_percentage'] = get_lang('Score').' - '.get_lang('Percentage');
- $overwriteColumnHeaderExport['only_score'] = get_lang('Score').' - '.get_lang('ScoreNote');
- $overwriteColumnHeaderExport['total'] = get_lang('Score').' - '.get_lang('ScoreTest');
- }
- $categoryList = TestCategory::getListOfCategoriesIDForTest($exerciseId, $courseId);
- if (!empty($categoryList)) {
- foreach ($categoryList as $categoryInfo) {
- $label = 'category_'.$categoryInfo['id'];
- if ($operation == 'excel') {
- $columns[] = $label.'_score_percentage';
- $columns[] = $label.'_only_score';
- $columns[] = $label.'_total';
- $overwriteColumnHeaderExport[$label] = $categoryInfo['title'];
- $overwriteColumnHeaderExport[$label.'_score_percentage'] = $categoryInfo['title'].
- ' - '.get_lang('Percentage');
- $overwriteColumnHeaderExport[$label.'_only_score'] = $categoryInfo['title'].
- ' - '.get_lang('ScoreNote');
- $overwriteColumnHeaderExport[$label.'_total'] = $categoryInfo['title'].
- ' - '.get_lang('ScoreTest');
- } else {
- $columns[] = $label;
- }
- }
- }
- if ($operation !== 'excel') {
- $columns[] = 'actions';
- }
- $whereCondition .= " AND te.status = '' ";
- $result = ExerciseLib::get_exam_results_data(
- $start,
- $limit,
- $sidx,
- $sord,
- $exerciseId,
- $whereCondition,
- false,
- $courseInfo['code'],
- true,
- true,
- $extraFieldsToAdd,
- true,
- $roundValues
- );
- break;
- case 'get_hotpotatoes_exercise_results':
- $course = api_get_course_info();
- $documentPath = api_get_path(SYS_COURSE_PATH).$course['path']."/document";
- if (api_is_allowed_to_edit()) {
- $columns = ['firstname', 'lastname', 'username', 'group_name', 'exe_date', 'score', 'actions'];
- } else {
- $columns = ['exe_date', 'score', 'actions'];
- }
- $result = ExerciseLib::get_exam_results_hotpotatoes_data(
- $start,
- $limit,
- $sidx,
- $sord,
- $hotpot_path,
- $whereCondition
- );
- break;
- case 'get_work_student_list_overview':
- if (!(api_is_allowed_to_edit() || api_is_coach())) {
- return [];
- }
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- $columns = [
- 'student', 'works',
- ];
- $result = getWorkUserListData(
- $workId,
- api_get_course_id(),
- api_get_session_id(),
- api_get_group_id(),
- $start,
- $limit,
- $sidx,
- $sord
- );
- break;
- case 'get_hotpotatoes_exercise_results':
- $course = api_get_course_info();
- $documentPath = api_get_path(SYS_COURSE_PATH).$course['path']."/document";
- if (api_is_allowed_to_edit(null, true) || api_is_drh()) {
- $columns = ['firstname', 'lastname', 'username', 'group_name', 'exe_date', 'score', 'actions'];
- } else {
- $columns = ['exe_date', 'score', 'actions'];
- }
- $result = ExerciseLib::get_exam_results_hotpotatoes_data(
- $start,
- $limit,
- $sidx,
- $sord,
- $hotpot_path,
- $whereCondition
- );
- break;
- case 'get_sessions_tracking':
- if (api_is_drh() || api_is_session_admin()) {
- $orderByName = Database::escape_string($sidx);
- $orderByName = in_array($orderByName, ['name', 'access_start_date']) ? $orderByName : 'name';
- $orderBy = " ORDER BY $orderByName $sord";
- $sessions = SessionManager::get_sessions_followed_by_drh(
- api_get_user_id(),
- $start,
- $limit,
- false,
- false,
- false,
- $orderBy,
- $keyword,
- $description,
- ['where' => $whereCondition, 'extra' => $extra_fields]
- );
- } else {
- // Sessions for the coach
- $sessions = Tracking::get_sessions_coached_by_user(
- api_get_user_id(),
- $start,
- $limit,
- false,
- $keyword,
- $description,
- $sidx,
- $sord,
- ['where' => $whereCondition, 'extra' => $extra_fields]
- );
- }
- $session_columns = SessionManager::getGridColumns('my_space');
- $columns = $session_columns['simple_column_name'];
- $result = [];
- if (!empty($sessions)) {
- foreach ($sessions as $session) {
- if (api_drh_can_access_all_session_content()) {
- $count_courses_in_session = SessionManager::get_course_list_by_session_id(
- $session['id'],
- '',
- null,
- true
- );
- } else {
- $count_courses_in_session = count(
- Tracking::get_courses_followed_by_coach(
- $user_id,
- $session['id']
- )
- );
- }
- $count_users_in_session = SessionManager::get_users_by_session(
- $session['id'],
- 0,
- true
- );
- $session['display_start_date'] = '';
- $session['display_end_date'] = '';
- $session['coach_access_start_date'] = '';
- $session['coach_access_end_date'] = '';
- $dateData = SessionManager::parseSessionDates($session, true);
- $dateToString = $dateData['access'];
- $detailButtons = [];
- $detailButtons[] = Display::url(
- Display::return_icon('works.png', get_lang('WorksReport')),
- api_get_path(WEB_CODE_PATH).'mySpace/works_in_session_report.php?session='.$session['id']
- );
- $detailButtons[] = Display::url(
- Display::return_icon('2rightarrow.png'),
- api_get_path(WEB_CODE_PATH).'mySpace/course.php?session_id='.$session['id']
- );
- $item = [
- 'name' => Display::url(
- $session['name'],
- api_get_path(WEB_CODE_PATH).'mySpace/course.php?session_id='.$session['id']
- ),
- 'date' => $dateToString,
- 'course_per_session' => $count_courses_in_session,
- 'student_per_session' => $count_users_in_session,
- 'actions' => implode(' ', $detailButtons),
- ];
- if (!empty($extra_fields)) {
- foreach ($extra_fields as $extraField) {
- $item[$extraField['field']] = $extraField['data'];
- }
- }
- $result[] = $item;
- }
- }
- break;
- case 'get_sessions':
- $session_columns = SessionManager::getGridColumns($list_type);
- $columns = $session_columns['simple_column_name'];
- if ($list_type == 'simple') {
- $result = SessionManager::formatSessionsAdminForGrid(
- [
- 'where' => $whereCondition,
- 'order' => "$sidx $sord, s.name",
- 'extra' => $extra_fields,
- 'limit' => "$start , $limit",
- ],
- false,
- $session_columns
- );
- } else {
- $result = SessionManager::get_sessions_admin_complete(
- [
- 'where' => $whereCondition,
- 'order' => "$sidx $sord, s.name",
- 'extra' => $extra_fields,
- 'limit' => "$start , $limit",
- ]
- );
- }
- break;
- case 'get_exercise_progress':
- $sessionId = (int) $_GET['session_id'];
- $courseId = (int) $_GET['course_id'];
- $exerciseId = (int) $_GET['exercise_id'];
- $date_from = $_GET['date_from'];
- $date_to = $_GET['date_to'];
- $columns = [
- 'session',
- 'exercise_id',
- 'quiz_title',
- 'username',
- 'lastname',
- 'firstname',
- 'time',
- 'question_id',
- 'question',
- 'description',
- 'answer',
- 'correct',
- ];
- $result = Tracking::get_exercise_progress(
- $sessionId,
- $courseId,
- $exerciseId,
- $date_from,
- $date_to,
- [
- 'where' => $whereCondition,
- 'order' => "$sidx $sord",
- 'limit' => "$start , $limit",
- ]
- );
- break;
- case 'get_session_lp_progress':
- $sessionId = 0;
- if (!empty($_GET['session_id']) && !empty($_GET['course_id'])) {
- $sessionId = (int) $_GET['session_id'];
- $courseId = (int) $_GET['course_id'];
- $course = api_get_course_info_by_id($courseId);
- }
- /**
- * Add lessons of course.
- */
- $columns = [
- 'username',
- 'firstname',
- 'lastname',
- ];
- $lessons = LearnpathList::get_course_lessons(
- $course['code'],
- $sessionId
- );
- foreach ($lessons as $lesson_id => $lesson) {
- $columns[] = $lesson_id;
- }
- $columns[] = 'total';
- $result = SessionManager::get_session_lp_progress(
- $sessionId,
- $courseId,
- $date_from,
- $date_to,
- [
- 'where' => $whereCondition,
- 'order' => "$sidx $sord",
- 'limit' => "$start , $limit",
- ]
- );
- break;
- case 'get_survey_overview':
- $sessionId = 0;
- if (!empty($_GET['session_id']) &&
- !empty($_GET['course_id']) &&
- !empty($_GET['survey_id'])
- ) {
- $sessionId = intval($_GET['session_id']);
- $courseId = intval($_GET['course_id']);
- $surveyId = intval($_GET['survey_id']);
- $date_from = $_GET['date_from'];
- $date_to = $_GET['date_to'];
- //$course = api_get_course_info_by_id($courseId);
- }
- /**
- * Add lessons of course.
- */
- $columns = [
- 'username',
- 'firstname',
- 'lastname',
- ];
- $questions = SurveyManager::get_questions($surveyId, $courseId);
- foreach ($questions as $question_id => $question) {
- $columns[] = $question_id;
- }
- $result = SessionManager::get_survey_overview(
- $sessionId,
- $courseId,
- $surveyId,
- $date_from,
- $date_to,
- [
- 'where' => $whereCondition,
- 'order' => "$sidx $sord",
- 'limit' => "$start , $limit",
- ]
- );
- break;
- case 'get_session_progress':
- $columns = [
- 'lastname',
- 'firstname',
- 'username',
- //'profile',
- 'total',
- 'courses',
- 'lessons',
- 'exercises',
- 'forums',
- 'homeworks',
- 'wikis',
- 'surveys',
- //exercises
- 'lessons_total',
- 'lessons_done',
- 'lessons_left',
- 'lessons_progress',
- //exercises
- 'exercises_total',
- 'exercises_done',
- 'exercises_left',
- 'exercises_progress',
- //forums
- 'forums_total',
- 'forums_done',
- 'forums_left',
- 'forums_progress',
- //assignments
- 'assignments_total',
- 'assignments_done',
- 'assignments_left',
- 'assignments_progress',
- //Wiki
- 'wiki_total',
- 'wiki_revisions',
- 'wiki_read',
- 'wiki_unread',
- 'wiki_progress',
- //surveys
- 'surveys_total',
- 'surveys_done',
- 'surveys_left',
- 'surveys_progress',
- ];
- $sessionId = 0;
- if (!empty($_GET['course_id']) && !empty($_GET['session_id'])) {
- $sessionId = intval($_GET['session_id']);
- $courseId = intval($_GET['course_id']);
- }
- $result = SessionManager::get_session_progress(
- $sessionId,
- $courseId,
- null,
- null,
- [
- 'where' => $whereCondition,
- 'order' => "$sidx $sord",
- 'limit' => "$start , $limit",
- ]
- );
- break;
- case 'get_session_access_overview':
- $columns = [
- 'logindate',
- 'username',
- 'lastname',
- 'firstname',
- 'clicks',
- 'ip',
- 'timeLoggedIn',
- 'session',
- ];
- $sessionId = 0;
- if (!empty($_GET['course_id']) && !empty($_GET['session_id'])) {
- $sessionId = intval($_GET['session_id']);
- $courseId = intval($_GET['course_id']);
- $studentId = intval($_GET['student_id']);
- $profile = intval($_GET['profile']);
- $date_from = intval($_GET['date_from']);
- $date_to = intval($_GET['date_to']);
- }
- $result = SessionManager::get_user_data_access_tracking_overview(
- $sessionId,
- $courseId,
- $studentId,
- $profile,
- $date_to,
- $date_from,
- [
- 'where' => $whereCondition,
- 'order' => "$sidx $sord",
- 'limit' => "$start , $limit",
- ]
- );
- break;
- case 'get_timelines':
- $columns = ['headline', 'actions'];
- if (!in_array($sidx, $columns)) {
- $sidx = 'headline';
- }
- $course_id = api_get_course_int_id();
- $result = Database::select(
- '*',
- $obj->table,
- [
- 'where' => [
- 'parent_id = ? AND c_id = ?' => ['0', $course_id],
- ],
- 'order' => "$sidx $sord",
- 'LIMIT' => "$start , $limit",
- ]
- );
- $new_result = [];
- foreach ($result as $item) {
- if (!$item['status']) {
- $item['name'] = '<font style="color:#AAA">'.$item['name'].'</font>';
- }
- $item['headline'] = Display::url($item['headline'], api_get_path(WEB_CODE_PATH).'timeline/view.php?id='.$item['id']);
- $item['actions'] = Display::url(Display::return_icon('add.png', get_lang('AddItems')), api_get_path(WEB_CODE_PATH).'timeline/?action=add_item&parent_id='.$item['id']);
- $item['actions'] .= Display::url(Display::return_icon('edit.png', get_lang('Edit')), api_get_path(WEB_CODE_PATH).'timeline/?action=edit&id='.$item['id']);
- $item['actions'] .= Display::url(Display::return_icon('delete.png', get_lang('Delete')), api_get_path(WEB_CODE_PATH).'timeline/?action=delete&id='.$item['id']);
- $new_result[] = $item;
- }
- $result = $new_result;
- break;
- case 'get_gradebooks':
- $columns = ['name', 'certificates', 'skills', 'actions', 'has_certificates'];
- if (!in_array($sidx, $columns)) {
- $sidx = 'name';
- }
- $result = Database::select(
- '*',
- $obj->table,
- ['order' => "$sidx $sord", 'LIMIT' => "$start , $limit"]
- );
- $new_result = [];
- foreach ($result as $item) {
- if ($item['parent_id'] != 0) {
- continue;
- }
- $skills = $obj->getSkillsByGradebook($item['id']);
- //Fixes bug when gradebook doesn't have names
- if (empty($item['name'])) {
- $item['name'] = $item['course_code'];
- }
- $item['name'] = Display::url(
- $item['name'],
- api_get_path(WEB_CODE_PATH).'gradebook/index.php?id_session=0&cidReq='.$item['course_code']
- );
- if (!empty($item['certif_min_score']) && !empty($item['document_id'])) {
- $item['certificates'] = Display::return_icon(
- 'accept.png',
- get_lang('WithCertificate'),
- [],
- ICON_SIZE_SMALL
- );
- $item['has_certificates'] = '1';
- } else {
- $item['certificates'] = Display::return_icon(
- 'warning.png',
- get_lang('NoCertificate'),
- [],
- ICON_SIZE_SMALL
- );
- $item['has_certificates'] = '0';
- }
- if (!empty($skills)) {
- $item['skills'] = '';
- foreach ($skills as $skill) {
- $item['skills'] .= Display::span($skill['name'], ['class' => 'label_tag skill']);
- }
- }
- $new_result[] = $item;
- }
- $result = $new_result;
- break;
- case 'get_event_email_template':
- $columns = ['subject', 'event_type_name', 'language_id', 'activated', 'actions'];
- if (!in_array($sidx, $columns)) {
- $sidx = 'subject';
- }
- $result = Database::select(
- '*',
- $obj->table,
- ['order' => "$sidx $sord", 'LIMIT' => "$start , $limit"]
- );
- $new_result = [];
- foreach ($result as $item) {
- $language_info = api_get_language_info($item['language_id']);
- $item['language_id'] = $language_info['english_name'];
- $item['actions'] = Display::url(
- Display::return_icon('edit.png', get_lang('Edit')),
- api_get_path(WEB_CODE_PATH).'admin/event_type.php?action=edit&event_type_name='.$item['event_type_name']
- );
- $item['actions'] .= Display::url(
- Display::return_icon('delete.png', get_lang('Delete')),
- api_get_path(WEB_CODE_PATH).'admin/event_controller.php?action=delete&id='.$item['id']
- );
- $new_result[] = $item;
- }
- $result = $new_result;
- break;
- case 'get_careers':
- $columns = ['name', 'description', 'actions'];
- if (!in_array($sidx, $columns)) {
- $sidx = 'name';
- }
- $result = Database::select(
- '*',
- $obj->table,
- ['order' => "$sidx $sord", 'LIMIT' => "$start , $limit"]
- );
- $new_result = [];
- foreach ($result as $item) {
- if (!$item['status']) {
- $item['name'] = '<font style="color:#AAA">'.$item['name'].'</font>';
- }
- $new_result[] = $item;
- }
- $result = $new_result;
- break;
- case 'get_promotions':
- $columns = ['name', 'career', 'description', 'actions'];
- if (!in_array($sidx, $columns)) {
- $sidx = 'name';
- }
- $result = Database::select(
- 'p.id,p.name, p.description, c.name as career, p.status',
- "$obj->table p LEFT JOIN ".Database::get_main_table(TABLE_CAREER)." c ON c.id = p.career_id ",
- ['order' => "$sidx $sord", 'LIMIT' => "$start , $limit"]
- );
- $new_result = [];
- foreach ($result as $item) {
- if (!$item['status']) {
- $item['name'] = '<font style="color:#AAA">'.$item['name'].'</font>';
- }
- $new_result[] = $item;
- }
- $result = $new_result;
- break;
- case 'get_mail_template':
- $columns = ['name', 'type', 'default_template', 'actions'];
- if (!in_array($sidx, $columns)) {
- $sidx = 'name';
- }
- if (!in_array($sidx, $columns)) {
- $sidx = 'name';
- }
- $result = Database::select(
- '*',
- $obj->table,
- [
- 'where' => ['url_id = ? ' => api_get_current_access_url_id()],
- 'order' => "$sidx $sord",
- 'LIMIT' => "$start , $limit",
- ]
- );
- $new_result = [];
- foreach ($result as $item) {
- $new_result[] = $item;
- }
- $result = $new_result;
- break;
- case 'get_grade_models':
- $columns = ['name', 'description', 'actions'];
- if (!in_array($sidx, $columns)) {
- $sidx = 'name';
- }
- $result = Database::select(
- '*',
- "$obj->table ",
- ['order' => "$sidx $sord", 'LIMIT' => "$start , $limit"]
- );
- $new_result = [];
- foreach ($result as $item) {
- $new_result[] = $item;
- }
- $result = $new_result;
- break;
- case 'get_usergroups':
- $obj->protectScript();
- $columns = ['name', 'users', 'courses', 'sessions', 'group_type', 'actions'];
- $result = $obj->getUsergroupsPagination($sidx, $sord, $start, $limit);
- break;
- case 'get_extra_fields':
- $obj = new ExtraField($type);
- $columns = [
- 'display_text',
- 'variable',
- 'field_type',
- 'changeable',
- 'visible_to_self',
- 'visible_to_others',
- 'filter',
- 'field_order',
- ];
- $result = $obj->getAllGrid($sidx, $sord, $start, $limit);
- $new_result = [];
- if (!empty($result)) {
- $checkIcon = Display::return_icon(
- 'check-circle.png',
- get_lang('Yes')
- );
- $timesIcon = Display::return_icon(
- 'closed-circle.png',
- get_lang('No')
- );
- foreach ($result as $item) {
- $item['display_text'] = ExtraField::translateDisplayName(
- $item['variable'],
- $item['displayText']
- );
- $item['field_type'] = $obj->get_field_type_by_id($item['fieldType']);
- $item['changeable'] = $item['changeable'] ? $checkIcon : $timesIcon;
- $item['visible_to_self'] = $item['visibleToSelf'] ? $checkIcon : $timesIcon;
- $item['visible_to_others'] = $item['visibleToOthers'] ? $checkIcon : $timesIcon;
- $item['filter'] = $item['filter'] ? $checkIcon : $timesIcon;
- $new_result[] = $item;
- }
- $result = $new_result;
- }
- break;
- case 'get_exercise_grade':
- $objExercise = new Exercise();
- $exercises = $objExercise->getExercisesByCourseSession(
- $_GET['course_id'],
- $_GET['session_id']
- );
- $cntExer = 4;
- if (!empty($exercises)) {
- $cntExer += count($exercises);
- }
- $columns = [];
- //Get dynamic column names
- $i = 1;
- $column_names = [];
- foreach (range(1, $cntExer) as $cnt) {
- switch ($cnt) {
- case 1:
- $columns[] = 'session';
- $column_names[] = get_lang('Section');
- break;
- case 2:
- $columns[] = 'username';
- $column_names[] = get_lang('Username');
- break;
- case 3:
- $columns[] = 'name';
- $column_names[] = get_lang('Name');
- break;
- case $cntExer:
- $columns[] = 'finalScore';
- $column_names[] = get_lang('FinalScore');
- break;
- default:
- $title = '';
- if (!empty($exercises[$cnt - 4]['title'])) {
- $title = ucwords(strtolower(trim($exercises[$cnt - 4]['title'])));
- }
- $columns[] = 'exer'.$i;
- $column_names[] = $title;
- $i++;
- break;
- }
- }
- $quizIds = [];
- if (!empty($exercises)) {
- foreach ($exercises as $exercise) {
- $quizIds[] = $exercise['id'];
- }
- }
- $course = api_get_course_info_by_id($_GET['course_id']);
- $listUserSess = CourseManager::get_student_list_from_course_code(
- $course['code'],
- true,
- $_GET['session_id']
- );
- $usersId = array_keys($listUserSess);
- $users = UserManager::get_user_list_by_ids(
- $usersId,
- null,
- "lastname, firstname",
- "$start , $limit"
- );
- $exeResults = $objExercise->getExerciseAndResult(
- $_GET['course_id'],
- $_GET['session_id'],
- $quizIds
- );
- $arrGrade = [];
- foreach ($exeResults as $exeResult) {
- $arrGrade[$exeResult['exe_user_id']][$exeResult['exe_exo_id']] = $exeResult['exe_result'];
- }
- $result = [];
- $i = 0;
- foreach ($users as $user) {
- $sessionInfo = SessionManager::fetch($listUserSess[$user['user_id']]['id_session']);
- $result[$i]['session'] = $sessionInfo['name'];
- $result[$i]['username'] = $user['username'];
- $result[$i]['name'] = $user['lastname']." ".$user['firstname'];
- $j = 1;
- $finalScore = 0;
- foreach ($quizIds as $quizID) {
- $grade = '';
- if (!empty($arrGrade[$user['user_id']][$quizID]) || $arrGrade[$user['user_id']][$quizID] == 0) {
- $finalScore += $grade = $arrGrade[$user['user_id']][$quizID];
- }
- $result[$i]['exer'.$j] = $grade;
- $j++;
- }
- if ($finalScore > 20) {
- $finalScore = 20;
- }
- $result[$i]['finalScore'] = number_format($finalScore, 2);
- $i++;
- }
- break;
- case 'get_extra_field_options':
- $obj = new ExtraFieldOption($type);
- $columns = ['display_text', 'option_value', 'option_order'];
- $result = $obj->get_all([
- 'where' => ["field_id = ? " => $field_id],
- 'order' => "$sidx $sord",
- 'LIMIT' => "$start , $limit",
- ]);
- break;
- case 'get_usergroups_teacher':
- $columns = ['name', 'users', 'status', 'group_type', 'actions'];
- $options = ['order' => "name $sord", 'LIMIT' => "$start , $limit"];
- $options['course_id'] = $course_id;
- switch ($type) {
- case 'not_registered':
- $options['where'] = [' (course_id IS NULL OR course_id != ?) ' => $course_id];
- $result = $obj->getUserGroupNotInCourse($options, $groupFilter);
- break;
- case 'registered':
- $options['where'] = [' usergroup.course_id = ? ' => $course_id];
- $result = $obj->getUserGroupInCourse($options, $groupFilter);
- break;
- }
- $new_result = [];
- if (!empty($result)) {
- $urlUserGroup = api_get_path(WEB_CODE_PATH).'admin/usergroup_users.php?'.api_get_cidreq();
- foreach ($result as $group) {
- $count = count($obj->get_users_by_usergroup($group['id']));
- $group['users'] = $count;
- if ($obj->allowTeachers()) {
- $group['users'] = Display::url(
- $count,
- $urlUserGroup.'&id='.$group['id']
- );
- }
- if ($obj->usergroup_was_added_in_course($group['id'], $course_id)) {
- $url = 'class.php?action=remove_class_from_course&id='.$group['id'].'&'.api_get_cidreq();
- $icon = Display::return_icon('delete.png', get_lang('Remove'));
- } else {
- $url = 'class.php?action=add_class_to_course&id='.$group['id'].'&'.api_get_cidreq().'&type=not_registered';
- $icon = Display::return_icon('add.png', get_lang('Add'));
- }
- switch ($group['group_type']) {
- case 0:
- $group['group_type'] = Display::label(get_lang('Class'), 'primary');
- break;
- case 1:
- $group['group_type'] = Display::label(get_lang('Social'), 'success');
- break;
- }
- $role = $obj->getUserRoleToString(api_get_user_id(), $group['id']);
- $group['status'] = $role;
- $group['actions'] = '';
- if ($obj->allowTeachers()) {
- $group['actions'] .= Display::url(
- Display::return_icon('statistics.png'),
- $urlUserGroup.'&id='.$group['id']
- ).' ';
- }
- $group['actions'] .= Display::url($icon, $url);
- $new_result[] = $group;
- }
- $result = $new_result;
- }
- if (!in_array($sidx, $columns)) {
- $sidx = 'name';
- }
- // Multidimensional sort
- $result = msort($result, $sidx, $sord);
- break;
- default:
- exit;
- }
- $allowed_actions = [
- 'get_careers',
- 'get_promotions',
- 'get_mail_template',
- 'get_usergroups',
- 'get_usergroups_teacher',
- 'get_gradebooks',
- 'get_sessions',
- 'get_session_access_overview',
- 'get_sessions_tracking',
- 'get_session_lp_progress',
- 'get_survey_overview',
- 'get_session_progress',
- 'get_exercise_progress',
- 'get_exercise_results',
- 'get_exercise_results_report',
- 'get_work_student_list_overview',
- 'get_hotpotatoes_exercise_results',
- 'get_work_teacher',
- 'get_work_student',
- 'get_work_user_list',
- 'get_work_user_list_others',
- 'get_work_user_list_all',
- 'get_timelines',
- 'get_grade_models',
- 'get_event_email_template',
- 'get_user_skill_ranking',
- 'get_extra_fields',
- 'get_extra_field_options',
- //'get_course_exercise_medias',
- 'get_user_course_report',
- 'get_user_course_report_resumed',
- 'get_exercise_grade',
- 'get_group_reporting',
- 'get_course_announcements',
- 'get_programmed_announcements',
- 'course_log_events',
- 'get_learning_path_calendars',
- 'get_usergroups_users',
- 'get_calendar_users',
- 'get_exercise_categories',
- ];
- //5. Creating an obj to return a json
- if (in_array($action, $allowed_actions)) {
- $response = new stdClass();
- $response->page = $page;
- $response->total = $total_pages;
- $response->records = $count;
- if ($operation && $operation == 'excel') {
- $j = 1;
- $array = [];
- if (empty($column_names)) {
- $column_names = $columns;
- }
- // Headers
- foreach ($column_names as $col) {
- // Overwrite titles
- if (isset($overwriteColumnHeaderExport[$col])) {
- $col = $overwriteColumnHeaderExport[$col];
- }
- $array[0][] = $col;
- }
- foreach ($result as $row) {
- foreach ($columns as $col) {
- $array[$j][] = strip_tags($row[$col]);
- }
- $j++;
- }
- $fileName = !empty($action) ? $action : 'company_report';
- if (!empty($exportFilename)) {
- $fileName = $exportFilename;
- }
- switch ($exportFormat) {
- case 'xls':
- Export::arrayToXls($array, $fileName);
- break;
- case 'xls_html':
- //TODO add date if exists
- $browser = new Browser();
- if ($browser->getPlatform() == Browser::PLATFORM_WINDOWS) {
- Export::export_table_xls_html($array, $fileName, 'ISO-8859-15');
- } else {
- Export::export_table_xls_html($array, $fileName);
- }
- break;
- case 'csv':
- default:
- Export::arrayToCsv($array, $fileName);
- break;
- }
- exit;
- }
- $i = 0;
- if (!empty($result)) {
- foreach ($result as $row) {
- // if results tab give not id, set id to $i otherwise id="null"
- // for all <tr> of the jqgrid - ref #4235
- if (!isset($row['id']) || isset($row['id']) && $row['id'] == '') {
- $response->rows[$i]['id'] = $i;
- } else {
- $response->rows[$i]['id'] = $row['id'];
- }
- $array = [];
- foreach ($columns as $col) {
- if (in_array($col, ['correction', 'actions'])) {
- $array[] = isset($row[$col]) ? $row[$col] : '';
- } else {
- $array[] = isset($row[$col]) ? Security::remove_XSS($row[$col]) : '';
- }
- }
- $response->rows[$i]['cell'] = $array;
- $i++;
- }
- }
- header('Content-Type: application/json;charset=utf-8');
- echo json_encode($response);
- }
- exit;
|