Files
Chamilo/main/exercise/FillBlanksCombination.php
2025-08-14 22:37:50 +02:00

22 lines
459 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* FillBlanksCombination.
*/
class FillBlanksCombination extends FillBlanks
{
public $typePicture = 'fill_in_blanks_co.png';
public $explanationLangVar = 'FillBlanksCombination';
/**
* Constructor.
*/
public function __construct()
{
parent::__construct();
$this->type = FILL_IN_BLANKS_COMBINATION;
$this->isContent = $this->getIsContent();
}
}