Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/main/coursecopy/classes/QuizQuestionOption.class.php

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;
}
}