123456789101112131415161718192021222324252627282930313233 |
- <?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 = array(
- '1' => get_lang('True'),
- '0' => get_lang('False'),
- '2' => get_lang('DontKnow'),
- );
- }
- }
|