Source for file exercice_submit.php
Documentation is available at exercice_submit.php
DOKEOS - elearning and course management software
For a full list of contributors, see documentation/credits.html
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 "documentation/licence.html" more details.
B-1030 Brussels - Belgium
* This script allows to run an exercise. According to the exercise type, questions
* can be on an unique page, or one per page with a Next button.
* One exercise may contain different types of answers (unique or multiple selection,
* matching, fill in blanks, free answer, hot-spot).
* Questions are selected randomly or not.
* When the user has answered all questions and clicks on the button "Ok",
* it goes to exercise_result.php
* Notice : This script is also used to show a question before modifying it by
* @package dokeos.exercise
* @author Olivier Brouckaert
* @version $Id: exercice_submit.php 15412 2008-05-26 13:56:24Z elixir_inter $
include('exercise.class.php');
include('question.class.php');
include('answer.class.php');
include('exercise.lib.php');
// debug var. Set to 0 to hide all debug display. Set to 1 to display debug messages.
// name of the language file that needs to be included
$language_file= 'exercice';
include_once('../inc/global.inc.php');
/* ------------ ACCESS RIGHTS ------------ */
// notice for unauthorized people.
include_once(api_get_path(LIBRARY_PATH). 'text.lib.php');
// general parameters passed via POST/GET
if ( empty ( $origin ) ) {
$origin = $_REQUEST['origin'];
if ( empty ( $learnpath_id ) ) {
if ( empty ( $learnpath_item_id ) ) {
if ( empty ( $formSent ) ) {
$formSent = $_REQUEST['formSent'];
if ( empty ( $exerciseResult ) ) {
$exerciseResult = $_REQUEST['exerciseResult'];
if ( empty ( $exerciseResultCoordinates ) ) {
$exerciseResultCoordinates = $_REQUEST['exerciseResultCoordinates'];
if ( empty ( $exerciseType ) ) {
$exerciseType = $_REQUEST['exerciseType'];
if ( empty ( $exerciseId ) ) {
$exerciseId = intval($_REQUEST['exerciseId']);
if ( empty ( $choice ) ) {
$choice = $_REQUEST['choice'];
if ( empty ( $questionNum ) ) {
if ( empty ( $nbrQuestions ) ) {
if ( empty ($buttonCancel) ) {
$buttonCancel = $_REQUEST['buttonCancel'];
// if the user has clicked on the "Cancel" button
// returns to the exercise list
header("Location: exercice.php?origin=$origin&learnpath_id=$learnpath_id&learnpath_item_id=$learnpath_item_id");
if ($origin== 'builder') {
/*******************************/
/* Clears the exercise session */
/*******************************/
if(isset ($_SESSION['exerciseResultCoordinates'])) { api_session_unregister('exerciseResultCoordinates'); unset ($exerciseResultCoordinates); }
// if the user has submitted the form
if($debug> 0){echo str_repeat(' ',0). '$formSent was set'. "<br />\n";}
$exerciseResultCoordinates= array();
// if the user has answered at least one question
if($debug> 0){echo str_repeat(' ',0). '$choice is an array'. "<br />\n";}
// $exerciseResult receives the content of the form.
// Each choice of the student is stored into the array $choice
if (isset ($_POST['hotspot']))
$exerciseResultCoordinates = $_POST['hotspot'];
// gets the question ID from $choice. It is the key of the array
// if the user didn't already answer this question
if(!isset ($exerciseResult[$key]))
// stores the user answer into the array
$exerciseResult[$key]= $choice[$key];
if (isset ($_POST['hotspot']))
$exerciseResultCoordinates[$key] = $_POST['hotspot'][$key];
if($debug> 0){echo str_repeat(' ',0). '$choice is an array - end'. "<br />\n";}
// the script "exercise_result.php" will take the variable $exerciseResult from the session
// if it is the last question (only for a sequential exercise)
if($exerciseType == 1 || $questionNum >= $nbrQuestions)
if($debug> 0){echo str_repeat(' ',0). 'Redirecting to exercise_result.php - Remove debug option to let this happen'. "<br />\n";}
// goes to the script that will show the result of the exercise
header("Location: exercise_result.php?origin=$origin&learnpath_id=$learnpath_id&learnpath_item_id=$learnpath_item_id");
if($debug> 0){echo str_repeat(' ',0). '$formSent was set - end'. "<br />\n";}
// if the object is not in the session
if(!isset ($_SESSION['objExercise']) || $origin == 'learnpath' || $_SESSION['objExercise']->id != $_REQUEST['exerciseId'])
if($debug> 0){echo str_repeat(' ',0). '$_SESSION[objExercise] was unset'. "<br />\n";}
// construction of Exercise
unset ($_SESSION['questionList']);
// if the specified exercise doesn't exist or is disabled
if(!$objExercise->read($exerciseId) || (!$objExercise->selectStatus() && !$is_allowedToEdit && ($origin != 'learnpath') ))
//die(get_lang('ExerciseNotFound'));
// saves the object into the session
if($debug> 0){echo str_repeat(' ',0). '$_SESSION[objExercise] was unset - set now - end'. "<br />\n";}
if(!isset ($objExcercise) && isset ($_SESSION['objExercise'])){
$objExercise = $_SESSION['objExercise'];
header('Location: exercice.php');
$exerciseTitle= $objExercise->selectTitle();
$exerciseDescription= $objExercise->selectDescription();
$exerciseSound= $objExercise->selectSound();
$randomQuestions= $objExercise->isRandom();
$exerciseType= $objExercise->selectType();
if(!isset ($_SESSION['questionList']) || $origin == 'learnpath')
if($debug> 0){echo str_repeat(' ',0). '$_SESSION[questionList] was unset'. "<br />\n";}
// selects the list of question ID
$questionList = ($randomQuestions? $objExercise->selectRandomList(): $objExercise->selectQuestionList());
// saves the question list into the session
if($debug> 0){echo str_repeat(' ',0). '$_SESSION[questionList] was unset - set now - end'. "<br />\n";}
if(!isset ($objExcercise) && isset ($_SESSION['objExercise'])){
$questionList = $_SESSION['questionList'];
$nbrQuestions= sizeof($questionList);
// if questionNum comes from POST and not from GET
if(!$questionNum || $_POST['questionNum'])
// only used for sequential exercises (see $exerciseType)
//$nameTools=get_lang('Exercice');
$interbreadcrumb[]= array("url" => "exercice.php","name" => get_lang('Exercices'));
$interbreadcrumb[]= array("url" => "#","name" => $exerciseTitle);
if ($origin != 'learnpath') { //so we are not in learnpath tool
$htmlHeadXtra[] = "<script type=\"text/javascript\" src=\"../plugin/hotspot/JavaScriptFlashGateway.js\"></script>
<script src=\"../plugin/hotspot/hotspot.js\" type=\"text/javascript\"></script>
<script language=\"JavaScript\" type=\"text/javascript\">
// -----------------------------------------------------------------------------
// Major version of Flash required
var requiredMajorVersion = 7;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Minor version of Flash required
var requiredRevision = 0;
// the version of javascript supported
// -----------------------------------------------------------------------------
<script language=\"VBScript\" type=\"text/vbscript\">
<!-- // Visual basic helper required to detect Flash Player ActiveX control version information
set swControl = CreateObject(\"ShockwaveFlash.ShockwaveFlash.\" + CStr(i))
if (IsObject(swControl)) then
swVersion = swControl.GetVariable(\"\$version\")
<script language=\"JavaScript1.1\" type=\"text/javascript\">
<!-- // Detect Client Browser type
var isIE = (navigator.appVersion.indexOf(\"MSIE\") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf(\"win\") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf(\"Opera\") != -1) ? true : false;
// JavaScript helper required to detect Flash Player PlugIn version information
// NS/Opera version >= 3 check for Flash plugin in plugin array
if (navigator.plugins != null && navigator.plugins.length > 0) {
if (navigator.plugins[\"Shockwave Flash 2.0\"] || navigator.plugins[\"Shockwave Flash\"]) {
var swVer2 = navigator.plugins[\"Shockwave Flash 2.0\"] ? \" 2.0\" : \"\";
var flashDescription = navigator.plugins[\"Shockwave Flash\" + swVer2].description;
descArray = flashDescription.split(\" \");
tempArrayMajor = descArray[2].split(\".\");
versionMajor = tempArrayMajor[0];
versionMinor = tempArrayMajor[1];
if ( descArray[3] != \"\" ) {
tempArrayMinor = descArray[3].split(\"r\");
tempArrayMinor = descArray[4].split(\"r\");
versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
flashVer = versionMajor + \".\" + versionMinor + \".\" + versionRevision;
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf(\"webtv/2.6\") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf(\"webtv/2.5\") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf(\"webtv\") != -1) flashVer = 2;
// Can't detect in all other cases
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
reqVer = parseFloat(reqMajorVer + \".\" + reqRevision);
// loop backwards through the versions until we find the newest version
if (isIE && isWin && !isOpera) {
versionStr = VBGetSwfVer(i);
versionStr = JSGetSwfVer(i);
} else if (versionStr != 0) {
if(isIE && isWin && !isOpera) {
tempArray = versionStr.split(\" \");
tempString = tempArray[1];
versionArray = tempString .split(\",\");
versionArray = versionStr.split(\".\");
versionMajor = versionArray[0];
versionMinor = versionArray[1];
versionRevision = versionArray[2];
versionString = versionMajor + \".\" + versionRevision; // 7.0r24 == 7.24
versionNum = parseFloat(versionString);
// is the major.revision >= requested major.revision AND the minor version >= requested minor
if ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {
return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );
$charset = 'ISO-8859-15';
header('Content-Type: text/html; charset='. $charset);
if(empty($document_language))
//if there was no valid iso-code, use the english one
$document_language = 'en';
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang=" <?php echo $document_language; ?>" lang=" <?php echo $document_language; ?>">
<meta http-equiv="Content-Type" content="text/html; charset= <?php echo $charset; ?>" />
echo "<h3>". $exerciseTitle. "</h3>";
if(!empty($exerciseSound))
echo "<a href=\"../document/download.php?doc_url=%2Faudio%2F". $exerciseSound. "\" target=\"_blank\">",
"<img src=\"../img/sound.gif\" border=\"0\" align=\"absmiddle\" alt=",get_lang('Sound'). "\" /></a>";
// Get number of hotspot questions for javascript validation
$number_of_hotspot_questions = 0;
foreach($questionList as $questionId)
// for sequential exercises
// if it is not the right question, goes to the next loop iteration
if ($objQuestionTmp->selectType() == HOT_SPOT)
$number_of_hotspot_questions++ ;
if ($objQuestionTmp->selectType() == HOT_SPOT)
$number_of_hotspot_questions++ ;
if($number_of_hotspot_questions > 0)
$onsubmit = "onsubmit=\"return validateFlashVar('". $number_of_hotspot_questions. "', '". get_lang('HotspotValidateError1'). "', '". get_lang('HotspotValidateError2'). "');\"";
$s= "<p>$exerciseDescription</p>";
if($origin == 'learnpath' && $exerciseType== 2){
$s2 = "&exerciseId=". $exerciseId;
$s.= " <form method='post' action='". api_get_self(). "?autocomplete=off". $s2. "' name='frm_exercise' $onsubmit>
<input type='hidden' name='formSent' value='1' />
<input type='hidden' name='exerciseType' value='". $exerciseType. "' />
<input type='hidden' name='questionNum' value='". $questionNum. "' />
<input type='hidden' name='nbrQuestions' value='". $nbrQuestions. "' />
<input type='hidden' name='origin' value='". $origin. "' />
<input type='hidden' name='learnpath_id' value='". $learnpath_id. "' />
<input type='hidden' name='learnpath_item_id' value='". $learnpath_item_id. "' />
<table width='100%' border='0' cellpadding='1' cellspacing='0'>
<table width='100%' cellpadding='3' cellspacing='0' border='0'>";
foreach($questionList as $questionId)
// for sequential exercises
// if it is not the right question, goes to the next loop iteration
// if the user has already answered this question
if(isset ($exerciseResult[$questionId]))
// construction of the Question object
$questionName= $objQuestionTmp->selectTitle();
// destruction of the Question object
echo '<tr><td>'. get_lang('AlreadyAnswered'). ' "'. $questionName. '"</td></tr>';
<td valign='middle' bgcolor='#e6e6e6'>
if($exerciseType == 2) $s.= ' / '. $nbrQuestions;
// shows the question and its answers
// for sequential exercises
<!-- <input type='submit' name='buttonCancel' value=". get_lang('Cancel'). " />
<input type='submit' name='submit' value='";
if ($exerciseType == 1 || $nbrQuestions == $questionNum)
$s.= "</td></tr></form></table>";
if ($origin != 'learnpath') { //so we are not in learnpath tool
|