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.
62 lines
2.1 KiB
62 lines
2.1 KiB
18 years ago
|
<?php
|
||
|
include('exercise.class.php');
|
||
|
include('question.class.php');
|
||
|
include('answer.class.php');
|
||
|
|
||
|
include('exercise.lib.php');
|
||
|
|
||
|
$langFile='exercice';
|
||
|
|
||
|
include("../inc/global.inc.php");
|
||
|
$this_section=SECTION_COURSES;
|
||
|
|
||
|
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'));
|
||
|
Display::display_header($nameTools,"Exercise");
|
||
|
?>
|
||
|
<table border="0" align="center" cellpadding="2" cellspacing="2" width="100%">
|
||
|
<h4>
|
||
|
<?php echo "Add Feedback"; ?>
|
||
|
</h4>
|
||
|
<?php
|
||
|
$id = $_REQUEST['question'];
|
||
|
$objQuestionTmp=new Question();
|
||
|
$objQuestionTmp->read($id);
|
||
|
echo "<tr><td><b>".get_lang('Question')." : </b>";
|
||
|
echo $objQuestionTmp->selectTitle();
|
||
|
echo "</td></tr>";
|
||
|
echo " <br><tr><td><b><br>".get_lang('Answer')." : </b></td></tr>";
|
||
|
$objAnswerTmp=new Answer($id);
|
||
|
$num = $objAnswerTmp->selectNbrAnswers();
|
||
|
$objAnswerTmp->read();
|
||
|
for($i=1;$i<=$num;$i++)
|
||
|
{
|
||
|
echo "<tr><td width='10%'> ";
|
||
|
$ans = $objAnswerTmp->answer[$i];
|
||
|
$fck_attribute['Width'] = '600';
|
||
|
$fck_attribute['Height'] = '200';
|
||
|
$fck_attribute['ToolbarSet'] = 'Comment';
|
||
|
$form = new FormValidator('feedbackform','post',$_SERVER['PHP_SELF']."?modifyQuestion=".$modifyQuestion."&newQuestion=".$newQuestion);
|
||
|
$obj_registration_form = new HTML_QuickForm('frmRegistration', 'POST');
|
||
|
$renderer =& $obj_registration_form->defaultRenderer();
|
||
|
$renderer->setElementTemplate(
|
||
|
'<tr>
|
||
|
<td align="left" style="" valign="top" width=30%>{label}
|
||
|
<!-- BEGIN required --><span style="color: #ff0000">*</span><!-- END required -->
|
||
|
</td>
|
||
|
<td align="left" width=70%>{element}
|
||
|
<!-- BEGIN error --><br /><span style="color: #ff0000;font-size:10px">{error}</span><!-- END error -->
|
||
|
</td>
|
||
|
</tr>'
|
||
|
);
|
||
|
$form->add_html_editor('Feedback',$i.'.'.$ans,false);
|
||
|
$form->display();
|
||
|
echo "</td>";
|
||
|
}?>
|
||
|
<form name="frm" action="#" method="post">
|
||
|
Click Ok to finish <input type="submit" value="Ok" />
|
||
|
</form>
|