123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- use ChamiloSession as Session;
- require_once __DIR__.'/../inc/global.inc.php';
- $courseCode = $_GET['coursecode'];
- $questionId = $_GET['questionId'];
- $coordinates = $_GET['coord'];
- $objExercise = Session::read('objExercise');
- $exerciseId = $objExercise->selectId();
- $answerOrderId = count($_SESSION['exerciseResult'][$questionId]['ids']) + 1;
- if ($_GET['answerId'] == "0") {
-
- $hit = 0;
- $answerId = null;
- } else {
-
- $hit = 1;
- $answerId = api_substr($_GET['answerId'], 22, 2);
-
- $_SESSION['exerciseResult'][$questionId][$answerId] = $hit;
- }
- $coords = explode('/', $coordinates);
- $coordinates = '';
- foreach ($coords as $coord) {
- list($x, $y) = explode(';', $coord);
- $coordinates .= round($x).';'.round($y).'/';
- }
- $coordinates = substr($coordinates, 0, -1);
- $TBL_TRACK_E_HOTSPOT = Database::get_main_table(TABLE_STATISTIC_TRACK_E_HOTSPOT);
- $params = [
- 'user_id' => api_get_user_id(),
- 'course_id' => $courseCode,
- 'quiz_id' => $exerciseId,
- 'question_id' => $questionId,
- 'answer_id' => $answerId,
- 'correct' => $hit,
- 'coordinate' => $coordinates
- ];
- $insert_id = Database::insert($TBL_TRACK_E_HOTSPOT, $params);
- $_SESSION['exerciseResult'][$questionId]['ids'][$answerOrderId] = $insert_id;
|