You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.5 KiB
123 lines
3.5 KiB
<?php
|
|
/*
|
|
==============================================================================
|
|
Dokeos - elearning and course management software
|
|
|
|
Copyright (c) 2004 Dokeos S.A.
|
|
Copyright (c) 2003 Ghent University (UGent)
|
|
Copyright (c) 2001 Universite catholique de Louvain (UCL)
|
|
Copyright (c) Olivier Brouckaert
|
|
|
|
For a full list of contributors, see "credits.txt".
|
|
The full license can be read in "license.txt".
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
Contact: Dokeos, 181 rue Royale, B-1000 Brussels, Belgium, info@dokeos.com
|
|
==============================================================================
|
|
*/
|
|
/**
|
|
==============================================================================
|
|
* This file generates the ActionScript variables code used by the HotSpot .swf
|
|
*
|
|
* @author Toon Keppens
|
|
* @package dokeos.exercise
|
|
==============================================================================
|
|
*/
|
|
|
|
|
|
include('exercise.class.php');
|
|
include('question.class.php');
|
|
include('answer.class.php');
|
|
|
|
include('../inc/global.inc.php');
|
|
//include('../inc/lib/database.inc.lib');
|
|
|
|
// set vars
|
|
$userId = $_user['user_id'];
|
|
$questionId = $_GET['modifyAnswers'];
|
|
|
|
$questionId = 7;
|
|
|
|
$objQuestion = new Question();
|
|
$objQuestion->read($questionId);
|
|
|
|
$TBL_ANSWERS = $_course['dbNameGlu'].'quiz_answer';
|
|
|
|
$dbNameGlu = $_course['dbNameGlu'];
|
|
$documentPath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document';
|
|
|
|
$picturePath = $documentPath.'/images';
|
|
$pictureName = $objQuestion->selectPicture();
|
|
$pictureSize = getimagesize($picturePath.'/'.$objQuestion->selectPicture());
|
|
$pictureWidth = $pictureSize[0];
|
|
$pictureHeight = $pictureSize[1];
|
|
|
|
$courseLang = $_course['language'];
|
|
$courseCode = $_course['sysCode'];
|
|
$coursePath = $_course['path'];
|
|
|
|
// Query db for answers
|
|
$sql = "SELECT id, answer, hotspot_coordinates, hotspot_type FROM `$TBL_ANSWERS` WHERE question_id = '$questionId' ORDER BY id";
|
|
$result = api_sql_query($sql,__FILE__,__LINE__);
|
|
|
|
// Init
|
|
$output = "hotspot_lang=$courseLang&hotspot_image=$pictureName&hotspot_image_width=$pictureWidth&hotspot_image_height=$pictureHeight&dbNameGlu=$dbNameGlu&courseCode=$coursePath";
|
|
$i = 0;
|
|
|
|
while ($hotspot = mysql_fetch_array($result)) {
|
|
|
|
$output .= "&hotspot_".$hotspot['id']."=true";
|
|
|
|
// Square or rectancle
|
|
if ($hotspot['hotspot_type'] == 'square' )
|
|
{
|
|
$output .= "&hotspot_".$hotspot['id']."_type=square";
|
|
}
|
|
|
|
// Circle or ovale
|
|
if ($hotspot['hotspot_type'] == 'circle')
|
|
{
|
|
$output .= "&hotspot_".$hotspot['id']."_type=circle";
|
|
}
|
|
|
|
// Polygon
|
|
if ($hotspot['hotspot_type'] == 'poly')
|
|
{
|
|
$output .= "&hotspot_".$hotspot['id']."_type=poly";
|
|
}
|
|
|
|
$output .= "&hotspot_".$hotspot['id']."_coord=".$hotspot['hotspot_coordinates']."";
|
|
|
|
$i++;
|
|
}
|
|
|
|
// Generate empty
|
|
$i++;
|
|
for ($i; $i <= 12; $i++)
|
|
{
|
|
$output .= "&hotspot_".$i."=false";
|
|
}
|
|
|
|
// set vars
|
|
$questionId = $_GET['modifyAnswers'];
|
|
|
|
$courseCode = $_course['sysCode'];
|
|
|
|
// Get clicks
|
|
foreach ($_SESSION['exerciseResultCoordinates'][$questionId] as $coordinate)
|
|
{
|
|
$output2 .= $coordinate."|";
|
|
}
|
|
|
|
var_dump($_SESSION['exerciseResultCoordinates']);
|
|
// Output
|
|
$output .= "&p_hotspot_answers=".substr($output2,0,-1)."&done=done";
|
|
|
|
echo $output;
|
|
?>
|