ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked, set/unset) and an image file. More...
Inheritance diagram for ASS_AnswerMultipleResponseImage:
Collaboration diagram for ASS_AnswerMultipleResponseImage:Public Member Functions | |
| ASS_AnswerMultipleResponseImage ($answertext="", $points_checked=0.0, $order=0, $points_unchecked=0, $a_image="", $id=-1) | |
| ASS_AnswerMultipleResponse constructor. | |
| getImage () | |
| Gets the image filename. | |
| setImage ($a_image=0) | |
| Sets the image filename. | |
Data Fields | |
| $image | |
ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked, set/unset) and an image file.
ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked, set/unset) and an image file
Definition at line 39 of file class.assAnswerMultipleResponseImage.php.
| ASS_AnswerMultipleResponseImage::ASS_AnswerMultipleResponseImage | ( | $ | answertext = "", |
|
| $ | points_checked = 0.0, |
|||
| $ | order = 0, |
|||
| $ | points_unchecked = 0, |
|||
| $ | a_image = "", |
|||
| $ | id = -1 | |||
| ) |
ASS_AnswerMultipleResponse constructor.
The constructor takes possible arguments an creates an instance of the ASS_AnswerMultipleResponse object.
| string | $answertext A string defining the answer text | |
| double | $points The number of points given for the selected answer | |
| integer | $order A nonnegative value representing a possible display or sort order | |
| double | $points_unchecked The points when the answer is not checked | |
| string | $a_image The image filename public |
Definition at line 61 of file class.assAnswerMultipleResponseImage.php.
References ASS_AnswerSimple::$answertext, ASS_AnswerSimple::$id, ASS_AnswerSimple::$order, ASS_AnswerMultipleResponse::$points_unchecked, and ASS_AnswerMultipleResponse::ASS_AnswerMultipleResponse().
{
$this->ASS_AnswerMultipleResponse($answertext, $points_checked, $order, $points_unchecked, $id);
$this->image = $a_image;
}
Here is the call graph for this function:| ASS_AnswerMultipleResponseImage::getImage | ( | ) |
Gets the image filename.
Returns the image filename
Definition at line 84 of file class.assAnswerMultipleResponseImage.php.
{
return $this->image;
}
| ASS_AnswerMultipleResponseImage::setImage | ( | $ | a_image = 0 |
) |
Sets the image filename.
Sets the image filename
| string | $a_image The image filename public |
Definition at line 98 of file class.assAnswerMultipleResponseImage.php.
{
$this->image = $a_image;
}
| ASS_AnswerMultipleResponseImage::$image |
Definition at line 47 of file class.assAnswerMultipleResponseImage.php.
1.7.1