ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.assAnswerMultipleResponseImage.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once "./Modules/TestQuestionPool/classes/class.assAnswerMultipleResponse.php";
5 include_once "./Modules/Test/classes/inc.AssessmentConstants.php";
6 
27  var $image;
28 
41  function __construct (
42  $answertext = "",
43  $points_checked = 0.0,
44  $order = 0,
46  $a_image = "",
47  $id = -1
48  )
49  {
51  $this->image = $a_image;
52  }
53 
54 
64  function getImage()
65  {
66  return $this->image;
67  }
68 
78  function setImage($a_image = 0)
79  {
80  $this->image = $a_image;
81  }
82 }
83 
84 ?>