12345678910111213141516171819202122232425262728293031323334 |
- <?php
- class MultipleAnswerCombinationTrueFalse extends MultipleAnswerCombination
- {
- public static $typePicture = 'mcmaco.png';
- public static $explanationLangVar = 'MultipleAnswerCombinationTrueFalse';
- public $options;
-
- public function __construct()
- {
- parent::__construct();
- $this->type = MULTIPLE_ANSWER_COMBINATION_TRUE_FALSE;
- $this->isContent = $this->getIsContent();
- $this->options = [
- '1' => get_lang('True'),
- '0' => get_lang('False'),
- '2' => get_lang('DontKnow'),
- ];
- }
- }
|