ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.assAnswerCloze.php
Go to the documentation of this file.
1 <?php
2  /*
3  +----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +----------------------------------------------------------------------------+
22 */
23 
24 include_once "./Modules/TestQuestionPool/classes/class.assAnswerSimple.php";
25 include_once "./Modules/Test/classes/inc.AssessmentConstants.php";
26 
38 {
48 
58 
69  function assAnswerCloze($answertext = "", $points = 0.0, $order = 0)
70  {
72  $this->lowerBound = NULL;
73  $this->upperBound = NULL;
74  }
75 
80  function setLowerBound($bound)
81  {
82  $bound = str_replace(",", ".", $bound);
83  if ($bound > $this->getAnswertext() || strlen($bound) == 0)
84  {
85  $bound = $this->getAnswertext();
86  }
87 
88  if ( is_numeric($bound) )
89  {
90  $this->lowerBound = $bound;
91  }
92  else
93  {
94  // unreachable
95  // $this->lowerBound = $this->getAnswertext();
96  }
97  }
98 
103  function setUpperBound($bound)
104  {
105  $bound = str_replace(",", ".", $bound);
106 
107  $value = $this->getNumericValueFromAnswerText();
108 
109  if ($bound < $value || strlen($bound) == 0)
110  {
111  $bound = $value;
112  }
113 
114  if ( is_numeric($bound) )
115  {
116  $this->upperBound = $bound;
117  }
118  else
119  {
120  $this->upperBound = $this->getAnswertext();
121  }
122  }
123 
124  protected function getNumericValueFromAnswerText()
125  {
126  include_once("./Services/Math/classes/class.EvalMath.php");
127  $eval = new EvalMath();
128  $eval->suppress_errors = true;
129  return $eval->e(str_replace(",", ".", ilUtil::stripSlashes($this->getAnswertext(), FALSE)));
130  }
131 
132  function getLowerBound()
133  {
134  return $this->lowerBound;
135  }
136 
137  function getUpperBound()
138  {
139  return $this->upperBound;
140  }
141 }