123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * File containing the FreeAnswer class.
- * This class allows to instantiate an object of type FREE_ANSWER,
- * extending the class question
- * @package chamilo.exercise
- * @author Eric Marguin
- * @version $Id: admin.php 10680 2007-01-11 21:26:23Z pcool $
- */
- /**
- * Code
- */
- /**
- * @package chamilo.exercise
- */
- class OralExpression extends Question
- {
- static $typePicture = 'audio_question.png';
- static $explanationLangVar = 'OralExpression';
- /**
- * Constructor
- */
- function OralExpression($course_code = null){
- parent::question($course_code);
- $this -> type = ORAL_EXPRESSION;
- $this -> isContent = $this-> getIsContent();
- }
- /**
- * function which redifines Question::createAnswersForm
- * @param the formvalidator instance
- */
- function createAnswersForm ($form) {
- $form -> addElement('text','weighting',get_lang('Weighting'), array('class' => 'span1'));
- // setting the save button here and not in the question class.php
- $form->addElement('style_submit_button','submitQuestion',$this->submitText, 'class="'.$this->submitClass.'"');
- if (!empty($this->id)) {
- $form -> setDefaults(array('weighting' => Text::float_format($this->weighting, 1)));
- } else {
- if ($this -> isContent == 1) {
- $form -> setDefaults(array('weighting' => '10'));
- }
- }
- }
- /**
- * abstract function which creates the form to create / edit the answers of the question
- * @param FormValidator instance
- */
- function processAnswersCreation($form)
- {
- $this->weighting = $form -> getSubmitValue('weighting');
- $this->save();
- }
- /**
- * {@inheritdoc}
- */
- function return_header($feedback_type = null, $counter = null, $score = null, $show_media = false, $hideTitle = 0)
- {
- $header = parent::return_header($feedback_type, $counter, $score, $show_media, $hideTitle);
- $header .= '<table class="'.$this->question_table_class.'">
- <tr>
- <th> </th>
- </tr>
- <tr>
- <th>'.get_lang("Answer").'</th>
- </tr>
- <tr>
- <th> </th>
- </tr>';
- return $header;
- }
- }
|