123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class Matching
- * Matching questions type class.
- *
- * This class allows to instantiate an object of
- * type MULTIPLE_ANSWER (MULTIPLE CHOICE, MULTIPLE ANSWER)
- * extending the class question
- *
- * @author Eric Marguin
- */
- class Matching extends Question
- {
- public $typePicture = 'matching.png';
- public $explanationLangVar = 'Matching';
- /**
- * Constructor.
- */
- public function __construct()
- {
- parent::__construct();
- $this->type = MATCHING;
- $this->isContent = $this->getIsContent();
- }
- /**
- * {@inheritdoc}
- */
- public function createAnswersForm($form)
- {
- $defaults = [];
- $nb_matches = $nb_options = 2;
- $matches = [];
- $answer = null;
- $counter = 1;
- if (isset($this->id)) {
- $answer = new Answer($this->id);
- $answer->read();
- if ($answer->nbrAnswers > 0) {
- for ($i = 1; $i <= $answer->nbrAnswers; $i++) {
- $correct = $answer->isCorrect($i);
- if (empty($correct)) {
- $matches[$answer->selectAutoId($i)] = chr(64 + $counter);
- $counter++;
- }
- }
- }
- }
- if ($form->isSubmitted()) {
- $nb_matches = $form->getSubmitValue('nb_matches');
- $nb_options = $form->getSubmitValue('nb_options');
- if (isset($_POST['lessOptions'])) {
- $nb_matches--;
- $nb_options--;
- }
- if (isset($_POST['moreOptions'])) {
- $nb_matches++;
- $nb_options++;
- }
- } elseif (!empty($this->id)) {
- if ($answer->nbrAnswers > 0) {
- $nb_matches = $nb_options = 0;
- for ($i = 1; $i <= $answer->nbrAnswers; $i++) {
- if ($answer->isCorrect($i)) {
- $nb_matches++;
- $defaults['answer['.$nb_matches.']'] = $answer->selectAnswer($i);
- $defaults['weighting['.$nb_matches.']'] = float_format($answer->selectWeighting($i), 1);
- $defaults['matches['.$nb_matches.']'] = $answer->correct[$i];
- } else {
- $nb_options++;
- $defaults['option['.$nb_options.']'] = $answer->selectAnswer($i);
- }
- }
- }
- } else {
- $defaults['answer[1]'] = get_lang('First step');
- $defaults['answer[2]'] = get_lang('Second step');
- $defaults['matches[2]'] = '2';
- $defaults['option[1]'] = get_lang('Note down the address');
- $defaults['option[2]'] = get_lang('Contact the emergency services');
- }
- if (empty($matches)) {
- for ($i = 1; $i <= $nb_options; $i++) {
- // fill the array with A, B, C.....
- $matches[$i] = chr(64 + $i);
- }
- } else {
- for ($i = $counter; $i <= $nb_options; $i++) {
- // fill the array with A, B, C.....
- $matches[$i] = chr(64 + $i);
- }
- }
- $form->addElement('hidden', 'nb_matches', $nb_matches);
- $form->addElement('hidden', 'nb_options', $nb_options);
- // DISPLAY MATCHES
- $html = '<table class="table table-striped table-hover">
- <thead>
- <tr>
- <th width="5%">'.get_lang('N°').'</th>
- <th width="70%">'.get_lang('Answer').'</th>
- <th width="15%">'.get_lang('Matches To').'</th>
- <th width="10%">'.get_lang('Score').'</th>
- </tr>
- </thead>
- <tbody>';
- $form->addHeader(get_lang('Match them'));
- $form->addHtml($html);
- if ($nb_matches < 1) {
- $nb_matches = 1;
- Display::addFlash(
- Display::return_message(get_lang('You have to create at least one answer'))
- );
- }
- $editorConfig = [
- 'ToolbarSet' => 'TestMatching',
- 'Width' => '100%',
- 'Height' => '125',
- ];
- for ($i = 1; $i <= $nb_matches; $i++) {
- $renderer = &$form->defaultRenderer();
- $renderer->setElementTemplate(
- '<td><!-- BEGIN error --><span class="form_error">{error}</span><!-- END error -->{element}</td>',
- "answer[$i]"
- );
- $renderer->setElementTemplate(
- '<td><!-- BEGIN error --><span class="form_error">{error}</span><!-- END error -->{element}</td>',
- "matches[$i]"
- );
- $renderer->setElementTemplate(
- '<td><!-- BEGIN error --><span class="form_error">{error}</span><!-- END error -->{element}</td>',
- "weighting[$i]"
- );
- $form->addHtml('<tr>');
- $form->addHtml("<td>$i</td>");
- //$form->addText("answer[$i]", null);
- $form->addHtmlEditor(
- "answer[$i]",
- null,
- null,
- false,
- $editorConfig
- );
- $form->addSelect(
- "matches[$i]",
- null,
- $matches,
- ['id' => 'matches_'.$i]
- );
- $form->addText(
- "weighting[$i]",
- null,
- true,
- ['id' => 'weighting_'.$i, 'value' => 10]
- );
- $form->addHtml('</tr>');
- }
- $form->addHtml('</tbody></table>');
- // DISPLAY OPTIONS
- $html = '<table class="table table-striped table-hover">
- <thead>
- <tr>
- <th width="15%">'.get_lang('N°').'</th>
- <th width="85%">'.get_lang('Answer').'</th>
- </tr>
- </thead>
- <tbody>';
- $form->addHtml($html);
- if ($nb_options < 1) {
- $nb_options = 1;
- Display::addFlash(
- Display::return_message(get_lang('You have to create at least one answer'))
- );
- }
- for ($i = 1; $i <= $nb_options; $i++) {
- $renderer = &$form->defaultRenderer();
- $renderer->setElementTemplate(
- '<td><!-- BEGIN error --><span class="form_error">{error}</span><!-- END error -->{element}</td>',
- "option[$i]"
- );
- $form->addHtml('<tr>');
- $form->addHtml('<td>'.chr(64 + $i).'</td>');
- $form->addHtmlEditor(
- "option[$i]",
- null,
- null,
- false,
- $editorConfig
- );
- $form->addHtml('</tr>');
- }
- $form->addHtml('</table>');
- global $text;
- $group = [];
- // setting the save button here and not in the question class.php
- $group[] = $form->addButtonDelete(get_lang('Remove element'), 'lessOptions', true);
- $group[] = $form->addButtonCreate(get_lang('Add element'), 'moreOptions', true);
- $group[] = $form->addButtonSave($text, 'submitQuestion', true);
- $form->addGroup($group);
- if (!empty($this->id)) {
- $form->setDefaults($defaults);
- } else {
- if ($this->isContent == 1) {
- $form->setDefaults($defaults);
- }
- }
- $form->setConstants(
- [
- 'nb_matches' => $nb_matches,
- 'nb_options' => $nb_options,
- ]
- );
- }
- /**
- * {@inheritdoc}
- */
- public function processAnswersCreation($form, $exercise)
- {
- $nb_matches = $form->getSubmitValue('nb_matches');
- $nb_options = $form->getSubmitValue('nb_options');
- $this->weighting = 0;
- $position = 0;
- $objAnswer = new Answer($this->id);
- // Insert the options
- for ($i = 1; $i <= $nb_options; $i++) {
- $position++;
- $option = $form->getSubmitValue('option['.$i.']');
- $objAnswer->createAnswer($option, 0, '', 0, $position);
- }
- // Insert the answers
- for ($i = 1; $i <= $nb_matches; $i++) {
- $position++;
- $answer = $form->getSubmitValue('answer['.$i.']');
- $matches = $form->getSubmitValue('matches['.$i.']');
- $weighting = $form->getSubmitValue('weighting['.$i.']');
- $this->weighting += $weighting;
- $objAnswer->createAnswer(
- $answer,
- $matches,
- '',
- $weighting,
- $position
- );
- }
- $objAnswer->save();
- $this->save($exercise);
- }
- /**
- * {@inheritdoc}
- */
- public function return_header(Exercise $exercise, $counter = null, $score = [])
- {
- $header = parent::return_header($exercise, $counter, $score);
- $header .= '<table class="'.$this->question_table_class.'">';
- $header .= '<tr>';
- $header .= '<th>'.get_lang('Elements list').'</th>';
- if (!in_array($exercise->results_disabled, [
- RESULT_DISABLE_SHOW_ONLY_IN_CORRECT_ANSWER,
- ])
- ) {
- $header .= '<th>'.get_lang('Your choice').'</th>';
- //if ($exercise->showExpectedYour choiceColumn()) {
- //$header .= '<th>'.get_lang('ExpectedYour choice').'</th>';
- //}
- }
- if ($exercise->showExpectedChoice()) {
- $header .= '<th>'.get_lang('Status').'</th>';
- } else {
- if ($exercise->showExpectedChoiceColumn()) {
- $header .= '<th>'.get_lang('Corresponds to').'</th>';
- }
- }
- $header .= '</tr>';
- return $header;
- }
- /**
- * Check if a answer is correct.
- *
- * @param int $position
- * @param int $answer
- * @param int $questionId
- *
- * @return bool
- */
- public static function isCorrect($position, $answer, $questionId)
- {
- $em = Database::getManager();
- $count = $em
- ->createQuery('
- SELECT COUNT(a) From ChamiloCourseBundle:CQuizAnswer a
- WHERE a.iid = :position AND a.correct = :answer AND a.questionId = :question
- ')
- ->setParameters([
- 'position' => $position,
- 'answer' => $answer,
- 'question' => $questionId,
- ])
- ->getSingleScalarResult();
- return $count ? true : false;
- }
- }
|