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.
28 lines
619 B
28 lines
619 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
require_once 'Resource.class.php';
|
|
|
|
/**
|
|
* Class QuizQuestionOption
|
|
* @author Bart Mollet <bart.mollet@hogent.be>
|
|
* @package chamilo.backup
|
|
*/
|
|
class QuizQuestionOption extends Resource
|
|
{
|
|
public $obj; //question_option
|
|
|
|
/**
|
|
* Create a new QuizQuestion
|
|
* @param string $question
|
|
* @param string $description
|
|
* @param int $ponderation
|
|
* @param int $type
|
|
* @param int $position
|
|
*/
|
|
public function QuizQuestionOption($obj)
|
|
{
|
|
parent::Resource($obj->id, RESOURCE_QUIZQUESTION);
|
|
$this->obj = $obj;
|
|
}
|
|
}
|
|
|