Source for file feedback.php
Documentation is available at feedback.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.
Rue des Palais 44 Paleizenstraat
B-1030 Brussels - Belgium
* @package dokeos.exercise
* @version $Id: admin.php 10680 2007-01-11 21:26:23Z pcool $
include('exercise.class.php');
include('question.class.php');
include('answer.class.php');
include('exercise.lib.php');
// name of the language file that needs to be included
$language_file= 'exercice';
include("../inc/global.inc.php");
include_once(api_get_path(LIBRARY_PATH). 'fileUpload.lib.php');
include_once(api_get_path(LIBRARY_PATH). 'document.lib.php');
include_once(api_get_path(LIBRARY_PATH). 'formvalidator/FormValidator.class.php');
$nameTools= get_lang('ExerciseManagement');
$interbreadcrumb[]= array("url" => "exercice.php","name" => get_lang('Exercices'));
<table border="0" align="center" cellpadding="2" cellspacing="2" width="100%">
<?php echo "Add Feedback"; ?>
$id = $_REQUEST['question'];
echo "<tr><td><b>". get_lang('Question'). " : </b>";
echo $objQuestionTmp->selectTitle();
echo " <br><tr><td><b><br>". get_lang('Answer'). " : </b></td></tr>";
$objAnswerTmp= new Answer($id);
$num = $objAnswerTmp->selectNbrAnswers();
echo "<tr><td width='10%'> ";
$ans = $objAnswerTmp->answer[$i];
$fck_attribute['Width'] = '600';
$fck_attribute['Height'] = '200';
$fck_attribute['ToolbarSet'] = 'Small';
$fck_attribute['Config']['IMUploadPath'] = 'upload/test/';
$form = new FormValidator('feedbackform','post',api_get_self(). "?modifyQuestion=". $modifyQuestion. "&newQuestion=". $newQuestion);
$obj_registration_form = new HTML_QuickForm('frmRegistration', 'POST');
$renderer = & $obj_registration_form->defaultRenderer();
$renderer->setElementTemplate(
<td align="left" style="" valign="top" width=30%>{label}
<!-- BEGIN required --><span style="color: #ff0000">*</span><!-- END required -->
<td align="left" width=70%>{element}
<!-- BEGIN error --><br /><span style="color: #ff0000;font-size:10px">{error}</span><!-- END error -->
$form->add_html_editor('Feedback',$i. '.'. $ans,false);
<form name="frm" action="#" method="post">
Click Ok to finish <input type="submit" value="Ok" />
|