|
|
|
<?php
|
|
|
|
/*
|
|
|
|
==============================================================================
|
|
|
|
Dokeos - elearning and course management software
|
|
|
|
|
|
|
|
Copyright (c) 2004-2009 Dokeos SPRL
|
|
|
|
|
|
|
|
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 address: Dokeos, rue du Corbeau, 108, B-1030 Brussels, Belgium
|
|
|
|
Mail: info@dokeos.com
|
|
|
|
==============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exercise administration
|
|
|
|
* This script allows to manage an exercise. It is included from the script admin.php
|
|
|
|
* @package dokeos.exercise
|
|
|
|
* @author Olivier Brouckaert
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// name of the language file that needs to be included
|
|
|
|
$language_file='exercice';
|
|
|
|
|
|
|
|
include('exercise.class.php');
|
|
|
|
include('question.class.php');
|
|
|
|
include('answer.class.php');
|
|
|
|
include('../inc/global.inc.php');
|
|
|
|
include('exercise.lib.php');
|
|
|
|
$this_section=SECTION_COURSES;
|
|
|
|
|
|
|
|
if(!api_is_allowed_to_edit()) {
|
|
|
|
api_not_allowed(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$htmlHeadXtra[] = '<script>
|
|
|
|
|
|
|
|
function advanced_parameters() {
|
|
|
|
if(document.getElementById(\'options\').style.display == \'none\') {
|
|
|
|
document.getElementById(\'options\').style.display = \'block\';
|
|
|
|
document.getElementById(\'img_plus_and_minus\').innerHTML=\' <img src="../img/div_hide.gif" alt="" /> '.get_lang('AdvancedParameters').'\';
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
document.getElementById(\'options\').style.display = \'none\';
|
|
|
|
document.getElementById(\'img_plus_and_minus\').innerHTML=\' <img src="../img/div_show.gif" alt="" /> '.get_lang('AdvancedParameters').'\';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function timelimit() {
|
|
|
|
if(document.getElementById(\'options2\').style.display == \'none\') {
|
|
|
|
document.getElementById(\'options2\').style.display = \'block\';
|
|
|
|
} else {
|
|
|
|
document.getElementById(\'options2\').style.display = \'none\';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function feedbackselection()
|
|
|
|
{
|
|
|
|
var index = document.exercise_admin.exerciseFeedbackType.selectedIndex;
|
|
|
|
|
|
|
|
if (index == \'1\') {
|
|
|
|
|
|
|
|
document.exercise_admin.exerciseType[1].checked=true;
|
|
|
|
document.exercise_admin.exerciseType[0].disabled=true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
document.exercise_admin.exerciseType[0].disabled=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>';
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INIT EXERCISE
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
include_once(api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
|
|
|
|
$objExercise = new Exercise();
|
|
|
|
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INIT FORM
|
|
|
|
*********************/
|
|
|
|
if(isset($_GET['exerciseId'])) {
|
|
|
|
$form = new FormValidator('exercise_admin', 'post', api_get_self().'?exerciseId='.$_GET['exerciseId']);
|
|
|
|
$objExercise -> read (intval($_GET['exerciseId']));
|
|
|
|
$form -> addElement ('hidden','edit','true');
|
|
|
|
} else {
|
|
|
|
$form = new FormValidator('exercise_admin');
|
|
|
|
$form -> addElement ('hidden','edit','false');
|
|
|
|
}
|
|
|
|
|
|
|
|
$objExercise -> createForm ($form);
|
|
|
|
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* VALIDATE FORM
|
|
|
|
*********************/
|
|
|
|
if($form -> validate()) {
|
|
|
|
$objExercise -> processCreation($form);
|
|
|
|
if($form -> getSubmitValue('edit') == 'true') {
|
|
|
|
header('Location:exercice.php?message=ExerciseEdited');
|
|
|
|
} else {
|
|
|
|
header('Location:admin.php?message=ExerciseStored&exerciseId='.$objExercise->id);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*********************
|
|
|
|
* DISPLAY FORM
|
|
|
|
*********************/
|
|
|
|
$nameTools=get_lang('ExerciseManagement');
|
|
|
|
$interbreadcrumb[] = array ("url"=>"exercice.php", "name"=> get_lang('Exercices'));
|
|
|
|
Display::display_header($nameTools,"Exercise");
|
|
|
|
if ($objExercise->feedbacktype==1)
|
|
|
|
Display::display_normal_message(get_lang("DirectFeedbackCantModifyTypeQuestion"));
|
|
|
|
$form -> display ();
|
|
|
|
}
|
|
|
|
Display::display_footer();
|