You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
459 B
22 lines
459 B
![]()
3 years ago
|
<?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();
|
||
|
}
|
||
|
}
|