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

22 lines
439 B
PHP

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