Public Member Functions | |
ilQTIPresentation () | |
setLabel ($a_label) | |
getLabel () | |
setXmllang ($a_xmllang) | |
getXmllang () | |
setX0 ($a_x0) | |
getX0 () | |
setY0 ($a_y0) | |
getY0 () | |
setWidth ($a_width) | |
getWidth () | |
setHeight ($a_height) | |
getHeight () | |
addMaterial ($a_material) | |
addResponse ($a_response) | |
Data Fields | |
$label | |
$xmllang | |
$x0 | |
$y0 | |
$width | |
$height | |
$material | |
$response | |
$order |
Definition at line 32 of file class.ilQTIPresentation.php.
ilQTIPresentation::addMaterial | ( | $ | a_material | ) |
Definition at line 112 of file class.ilQTIPresentation.php.
{ $count = array_push($this->material, $a_material); array_push($this->order, array("type" =>"material", "index" => $count-1)); }
ilQTIPresentation::addResponse | ( | $ | a_response | ) |
Definition at line 118 of file class.ilQTIPresentation.php.
{ $count = array_push($this->response, $a_response); array_push($this->order, array("type" =>"response", "index" => $count-1)); }
ilQTIPresentation::getHeight | ( | ) |
Definition at line 107 of file class.ilQTIPresentation.php.
{
return $this->height;
}
ilQTIPresentation::getLabel | ( | ) |
Definition at line 57 of file class.ilQTIPresentation.php.
{
return $this->label;
}
ilQTIPresentation::getWidth | ( | ) |
Definition at line 97 of file class.ilQTIPresentation.php.
{
return $this->width;
}
ilQTIPresentation::getX0 | ( | ) |
Definition at line 77 of file class.ilQTIPresentation.php.
{
return $this->x0;
}
ilQTIPresentation::getXmllang | ( | ) |
Definition at line 67 of file class.ilQTIPresentation.php.
{
return $this->xmllang;
}
ilQTIPresentation::getY0 | ( | ) |
Definition at line 87 of file class.ilQTIPresentation.php.
{
return $this->y0;
}
ilQTIPresentation::ilQTIPresentation | ( | ) |
Definition at line 45 of file class.ilQTIPresentation.php.
{ $this->response = array(); $this->material = array(); $this->order = array(); }
ilQTIPresentation::setHeight | ( | $ | a_height | ) |
Definition at line 102 of file class.ilQTIPresentation.php.
{ $this->height = $a_height; }
ilQTIPresentation::setLabel | ( | $ | a_label | ) |
Definition at line 52 of file class.ilQTIPresentation.php.
{ $this->label = $a_label; }
ilQTIPresentation::setWidth | ( | $ | a_width | ) |
Definition at line 92 of file class.ilQTIPresentation.php.
{ $this->width = $a_width; }
ilQTIPresentation::setX0 | ( | $ | a_x0 | ) |
Definition at line 72 of file class.ilQTIPresentation.php.
{ $this->x0 = $a_x0; }
ilQTIPresentation::setXmllang | ( | $ | a_xmllang | ) |
Definition at line 62 of file class.ilQTIPresentation.php.
{ $this->xmllang = $a_xmllang; }
ilQTIPresentation::setY0 | ( | $ | a_y0 | ) |
Definition at line 82 of file class.ilQTIPresentation.php.
{ $this->y0 = $a_y0; }
ilQTIPresentation::$height |
Definition at line 39 of file class.ilQTIPresentation.php.
ilQTIPresentation::$label |
Definition at line 34 of file class.ilQTIPresentation.php.
ilQTIPresentation::$material |
Definition at line 41 of file class.ilQTIPresentation.php.
ilQTIPresentation::$order |
Definition at line 43 of file class.ilQTIPresentation.php.
ilQTIPresentation::$response |
Definition at line 42 of file class.ilQTIPresentation.php.
ilQTIPresentation::$width |
Definition at line 38 of file class.ilQTIPresentation.php.
ilQTIPresentation::$x0 |
Definition at line 36 of file class.ilQTIPresentation.php.
ilQTIPresentation::$xmllang |
Definition at line 35 of file class.ilQTIPresentation.php.
ilQTIPresentation::$y0 |
Definition at line 37 of file class.ilQTIPresentation.php.