ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ASS_MarkSchema Class Reference

A class defining mark schemas for assessment test objects. More...

+ Collaboration diagram for ASS_MarkSchema:

Public Member Functions

 __construct ()
 ASS_MarkSchema constructor. More...
 
 createSimpleSchema ( $txt_failed_short="failed", $txt_failed_official="failed", $percentage_failed=0, $failed_passed=0, $txt_passed_short="passed", $txt_passed_official="passed", $percentage_passed=50, $passed_passed=1)
 Creates a simple mark schema for two mark steps: failed and passed. More...
 
 addMarkStep ($txt_short="", $txt_official="", $percentage=0, $passed=0)
 Adds a mark step to the mark schema. More...
 
 saveToDb ($test_id)
 Saves an ASS_MarkSchema object to a database. More...
 
 loadFromDb ($test_id)
 Loads an ASS_MarkSchema object from a database. More...
 
 flush ()
 Empties the mark schema and removes all mark steps. More...
 
 sort ()
 Sorts the mark schema using the minimum level values. More...
 
 deleteMarkStep ($index=0)
 Deletes the mark step with a given index. More...
 
 deleteMarkSteps ($indexes)
 Deletes multiple mark steps using their index positions. More...
 
 getMatchingMark ($percentage)
 Returns the matching mark for a given percentage. More...
 
 checkMarks ()
 Check the marks for consistency. More...
 
 getMarkSteps ()
 
 setMarkSteps ($mark_steps)
 

Static Public Member Functions

static _getMatchingMark ($test_id, $percentage)
 Returns the matching mark for a given percentage. More...
 
static _getMatchingMarkFromObjId ($a_obj_id, $percentage)
 Returns the matching mark for a given percentage. More...
 

Data Fields

 $mark_steps
 

Detailed Description

A class defining mark schemas for assessment test objects.

Author
Helmut Schottmüller helmu.nosp@m.t.sc.nosp@m.hottm.nosp@m.uell.nosp@m.er@ma.nosp@m.c.co.nosp@m.m
Maximilian Becker mbeck.nosp@m.er@d.nosp@m.ataba.nosp@m.y.de
Version
$Id$

Definition at line 16 of file class.assMarkSchema.php.

Constructor & Destructor Documentation

◆ __construct()

ASS_MarkSchema::__construct ( )

ASS_MarkSchema constructor.

The constructor takes possible arguments an creates an instance of the ASS_MarkSchema object.

Returns
ASS_MarkSchema

Definition at line 28 of file class.assMarkSchema.php.

29  {
30  $this->mark_steps = array();
31  }

Member Function Documentation

◆ _getMatchingMark()

static ASS_MarkSchema::_getMatchingMark (   $test_id,
  $percentage 
)
static

Returns the matching mark for a given percentage.

See also
$mark_steps
Parameters
integer$test_idThe database id of the test.
double$percentageA percentage value between 0 and 100.
Returns
mixed The mark object, if a matching mark was found, false otherwise.

PhpAssignmentInConditionInspection

Definition at line 317 of file class.assMarkSchema.php.

References $DIC, $ilDB, $result, and $row.

318  {
319  global $DIC;
320  $ilDB = $DIC['ilDB'];
321  $result = $ilDB->queryF(
322  "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level DESC",
323  array('integer'),
324  array($test_id)
325  );
326 
328  while ($row = $ilDB->fetchAssoc($result)) {
329  if ($percentage >= $row["minimum_level"]) {
330  return $row;
331  }
332  }
333  return false;
334  }
$result
global $DIC
Definition: saml.php:7
$row
global $ilDB

◆ _getMatchingMarkFromObjId()

static ASS_MarkSchema::_getMatchingMarkFromObjId (   $a_obj_id,
  $percentage 
)
static

Returns the matching mark for a given percentage.

See also
$mark_steps
Parameters
integer$a_obj_idThe database id of the test.
double$percentageA percentage value between 0 and 100.
Returns
mixed The mark object, if a matching mark was found, false otherwise.

Definition at line 346 of file class.assMarkSchema.php.

References $DIC, $ilDB, $result, and $row.

Referenced by ilObjTestAccess\_isPassed(), and ilObjTestAccess\isFailed().

347  {
348  global $DIC;
349  $ilDB = $DIC['ilDB'];
350  $result = $ilDB->queryF(
351  "SELECT tst_mark.* FROM tst_mark, tst_tests WHERE tst_mark.test_fi = tst_tests.test_id AND tst_tests.obj_fi = %s ORDER BY minimum_level DESC",
352  array('integer'),
353  array($a_obj_id)
354  );
355  while ($row = $ilDB->fetchAssoc($result)) {
356  if ($percentage >= $row["minimum_level"]) {
357  return $row;
358  }
359  }
360  return false;
361  }
$result
global $DIC
Definition: saml.php:7
$row
global $ilDB
+ Here is the caller graph for this function:

◆ addMarkStep()

ASS_MarkSchema::addMarkStep (   $txt_short = "",
  $txt_official = "",
  $percentage = 0,
  $passed = 0 
)

Adds a mark step to the mark schema.

A new ASS_Mark object will be created and stored in the $mark_steps array.

See also
$mark_steps
Parameters
string$txt_shortThe short text of the mark.
string$txt_officialThe official text of the mark.
float | integer$percentageThe minimum percentage level reaching the mark.
integer$passedThe passed status of the mark (0 = failed, 1 = passed).

Definition at line 74 of file class.assMarkSchema.php.

Referenced by createSimpleSchema(), and loadFromDb().

75  {
76  require_once './Modules/Test/classes/class.assMark.php';
77  $mark = new ASS_Mark($txt_short, $txt_official, $percentage, $passed);
78  array_push($this->mark_steps, $mark);
79  }
A class defining marks for assessment test objects.
+ Here is the caller graph for this function:

◆ checkMarks()

ASS_MarkSchema::checkMarks ( )

Check the marks for consistency.

See also
$mark_steps
Returns
bool|string true if the check succeeds, als a text string containing a language string for an error message

Definition at line 400 of file class.assMarkSchema.php.

References $i.

401  {
402  $minimum_percentage = 100;
403  $passed = 0;
404  for ($i = 0; $i < count($this->mark_steps); $i++) {
405  if ($this->mark_steps[$i]->getMinimumLevel() < $minimum_percentage) {
406  $minimum_percentage = $this->mark_steps[$i]->getMinimumLevel();
407  }
408  if ($this->mark_steps[$i]->getPassed()) {
409  $passed++;
410  }
411  }
412 
413  if ($minimum_percentage != 0) {
414  return "min_percentage_ne_0";
415  }
416 
417  if ($passed == 0) {
418  return "no_passed_mark";
419  }
420  return true;
421  }
$i
Definition: disco.tpl.php:19

◆ createSimpleSchema()

ASS_MarkSchema::createSimpleSchema (   $txt_failed_short = "failed",
  $txt_failed_official = "failed",
  $percentage_failed = 0,
  $failed_passed = 0,
  $txt_passed_short = "passed",
  $txt_passed_official = "passed",
  $percentage_passed = 50,
  $passed_passed = 1 
)

Creates a simple mark schema for two mark steps: failed and passed.

See also
$mark_steps
Parameters
string$txt_failed_shortThe short text of the failed mark.
string$txt_failed_officialThe official text of the failed mark.
float | int$percentage_failedThe minimum percentage level reaching the failed mark.
integer$failed_passedIndicates the passed status of the failed mark (0 = failed, 1 = passed).
string$txt_passed_shortThe short text of the passed mark.
string$txt_passed_officialThe official text of the passed mark.
float | int$percentage_passedThe minimum percentage level reaching the passed mark.
integer$passed_passedIndicates the passed status of the passed mark (0 = failed, 1 = passed).

Definition at line 48 of file class.assMarkSchema.php.

References addMarkStep(), and flush().

57  {
58  $this->flush();
59  $this->addMarkStep($txt_failed_short, $txt_failed_official, $percentage_failed, $failed_passed);
60  $this->addMarkStep($txt_passed_short, $txt_passed_official, $percentage_passed, $passed_passed);
61  }
flush()
Empties the mark schema and removes all mark steps.
addMarkStep($txt_short="", $txt_official="", $percentage=0, $passed=0)
Adds a mark step to the mark schema.
+ Here is the call graph for this function:

◆ deleteMarkStep()

ASS_MarkSchema::deleteMarkStep (   $index = 0)

Deletes the mark step with a given index.

See also
$mark_steps
Parameters
integer$indexThe index of the mark step to delete.

Definition at line 254 of file class.assMarkSchema.php.

References $index.

255  {
256  if ($index < 0) {
257  return;
258  }
259  if (count($this->mark_steps) < 1) {
260  return;
261  }
262  if ($index >= count($this->mark_steps)) {
263  return;
264  }
265  unset($this->mark_steps[$index]);
266  $this->mark_steps = array_values($this->mark_steps);
267  }
$index
Definition: metadata.php:60

◆ deleteMarkSteps()

ASS_MarkSchema::deleteMarkSteps (   $indexes)

Deletes multiple mark steps using their index positions.

See also
$mark_steps
Parameters
array$indexesAn array with all the index positions to delete.

Definition at line 276 of file class.assMarkSchema.php.

References $index, and $key.

277  {
278  foreach ($indexes as $key => $index) {
279  if (!(($index < 0) or (count($this->mark_steps) < 1))) {
280  unset($this->mark_steps[$index]);
281  }
282  }
283  $this->mark_steps = array_values($this->mark_steps);
284  }
$index
Definition: metadata.php:60
$key
Definition: croninfo.php:18

◆ flush()

ASS_MarkSchema::flush ( )

Empties the mark schema and removes all mark steps.

See also
$mark_steps

Definition at line 220 of file class.assMarkSchema.php.

Referenced by createSimpleSchema().

221  {
222  $this->mark_steps = array();
223  }
+ Here is the caller graph for this function:

◆ getMarkSteps()

ASS_MarkSchema::getMarkSteps ( )
Returns
ASS_Mark[]

Definition at line 426 of file class.assMarkSchema.php.

References $mark_steps.

427  {
428  return $this->mark_steps;
429  }

◆ getMatchingMark()

ASS_MarkSchema::getMatchingMark (   $percentage)

Returns the matching mark for a given percentage.

See also
$mark_steps
Parameters
double$percentageA percentage value between 0 and 100.
Returns
ASS_Mark|bool The mark object, if a matching mark was found, false otherwise.

Definition at line 295 of file class.assMarkSchema.php.

References $i.

296  {
297  for ($i = count($this->mark_steps) - 1; $i >= 0; $i--) {
298  $curMinLevel = $this->mark_steps[$i]->getMinimumLevel();
299 
300  if ($percentage > $curMinLevel || (string) $percentage == (string) $curMinLevel) { // >= does NOT work since PHP is a fucking female float pig !!!!
301  return $this->mark_steps[$i];
302  }
303  }
304  return false;
305  }
$i
Definition: disco.tpl.php:19

◆ loadFromDb()

ASS_MarkSchema::loadFromDb (   $test_id)

Loads an ASS_MarkSchema object from a database.

Parameters
integer$test_idA unique key which defines the test in the database.

PhpAssignmentInConditionInspection

Definition at line 194 of file class.assMarkSchema.php.

References $data, $DIC, $ilDB, $result, and addMarkStep().

195  {
196  global $DIC;
197  $ilDB = $DIC['ilDB'];
198 
199  if (!$test_id) {
200  return;
201  }
202  $result = $ilDB->queryF(
203  "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level",
204  array('integer'),
205  array($test_id)
206  );
207  if ($result->numRows() > 0) {
209  while ($data = $ilDB->fetchAssoc($result)) {
210  $this->addMarkStep($data["short_name"], $data["official_name"], $data["minimum_level"], $data["passed"]);
211  }
212  }
213  }
$result
global $DIC
Definition: saml.php:7
addMarkStep($txt_short="", $txt_official="", $percentage=0, $passed=0)
Adds a mark step to the mark schema.
global $ilDB
$data
Definition: bench.php:6
+ Here is the call graph for this function:

◆ saveToDb()

ASS_MarkSchema::saveToDb (   $test_id)

Saves an ASS_MarkSchema object to a database.

Parameters
integer$test_idThe database id of the related test.

PhpAssignmentInConditionInspection

PhpAssignmentInConditionInspection

Definition at line 86 of file class.assMarkSchema.php.

References $DIC, $ilDB, $key, $lng, $result, $row, ilObjAssessmentFolder\_enabledAssessmentLogging(), and ilObjAssessmentFolder\_getLogLanguage().

87  {
88  global $DIC;
89  $lng = $DIC['lng'];
90  $ilDB = $DIC['ilDB'];
91 
92  $oldmarks = array();
93  include_once "./Modules/Test/classes/class.ilObjAssessmentFolder.php";
95  $result = $ilDB->queryF(
96  "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level",
97  array('integer'),
98  array($test_id)
99  );
100  if ($result->numRows()) {
102  while ($row = $ilDB->fetchAssoc($result)) {
103  $oldmarks[$row["minimum_level"]] = $row;
104  }
105  }
106  }
107 
108  if (!$test_id) {
109  return;
110  }
111  // Delete all entries
112  $ilDB->manipulateF(
113  "DELETE FROM tst_mark WHERE test_fi = %s",
114  array('integer'),
115  array($test_id)
116  );
117  if (count($this->mark_steps) == 0) {
118  return;
119  }
120 
121  // Write new datasets
122  foreach ($this->mark_steps as $key => $value) {
123  $next_id = $ilDB->nextId('tst_mark');
124  $ilDB->manipulateF(
125  "INSERT INTO tst_mark (mark_id, test_fi, short_name, official_name, minimum_level, passed, tstamp) VALUES (%s, %s, %s, %s, %s, %s, %s)",
126  array('integer','integer','text','text','float','text','integer'),
127  array(
128  $next_id,
129  $test_id,
130  $value->getShortName(),
131  $value->getOfficialName(),
132  $value->getMinimumLevel(),
133  $value->getPassed(),
134  time()
135  )
136  );
137  }
139  $result = $ilDB->queryF(
140  "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level",
141  array('integer'),
142  array($test_id)
143  );
144  $newmarks = array();
145  if ($result->numRows()) {
147  while ($row = $ilDB->fetchAssoc($result)) {
148  $newmarks[$row["minimum_level"]] = $row;
149  }
150  }
151  foreach ($oldmarks as $level => $row) {
152  if (array_key_exists($level, $newmarks)) {
153  $difffields = array();
154  foreach ($row as $key => $value) {
155  if (strcmp($value, $newmarks[$level][$key]) != 0) {
156  switch ($key) {
157  case "mark_id":
158  case "tstamp":
159  break;
160  default:
161  array_push($difffields, "$key: $value => " . $newmarks[$level][$key]);
162  break;
163  }
164  }
165  }
166  if (count($difffields)) {
167  $this->logAction($test_id, $lng->txtlng("assessment", "log_mark_changed", ilObjAssessmentFolder::_getLogLanguage()) . ": " . join(", ", $difffields));
168  }
169  } else {
170  $this->logAction($test_id, $lng->txtlng("assessment", "log_mark_removed", ilObjAssessmentFolder::_getLogLanguage()) . ": " .
171  $lng->txtlng("assessment", "tst_mark_minimum_level", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["minimum_level"] . ", " .
172  $lng->txtlng("assessment", "tst_mark_short_form", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["short_name"] . ", " .
173  $lng->txtlng("assessment", "tst_mark_official_form", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["official_name"] . ", " .
174  $lng->txtlng("assessment", "tst_mark_passed", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["passed"]);
175  }
176  }
177  foreach ($newmarks as $level => $row) {
178  if (!array_key_exists($level, $oldmarks)) {
179  $this->logAction($test_id, $lng->txtlng("assessment", "log_mark_added", ilObjAssessmentFolder::_getLogLanguage()) . ": " .
180  $lng->txtlng("assessment", "tst_mark_minimum_level", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["minimum_level"] . ", " .
181  $lng->txtlng("assessment", "tst_mark_short_form", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["short_name"] . ", " .
182  $lng->txtlng("assessment", "tst_mark_official_form", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["official_name"] . ", " .
183  $lng->txtlng("assessment", "tst_mark_passed", ilObjAssessmentFolder::_getLogLanguage()) . " = " . $row["passed"]);
184  }
185  }
186  }
187  }
$result
global $DIC
Definition: saml.php:7
static _getLogLanguage()
retrieve the log language for assessment logging
static _enabledAssessmentLogging()
check wether assessment logging is enabled or not
$lng
$row
global $ilDB
$key
Definition: croninfo.php:18
+ Here is the call graph for this function:

◆ setMarkSteps()

ASS_MarkSchema::setMarkSteps (   $mark_steps)
Parameters
ASS_Mark[]$mark_steps

Definition at line 434 of file class.assMarkSchema.php.

References $_GET, $DIC, $ilUser, $mark_steps, ilObjAssessmentFolder\_addLog(), and ilObjTest\_getObjectIDFromTestID().

435  {
436  $this->mark_steps = $mark_steps;
437  }
+ Here is the call graph for this function:

◆ sort()

ASS_MarkSchema::sort ( )

Sorts the mark schema using the minimum level values.

See also
$mark_steps

Definition at line 230 of file class.assMarkSchema.php.

References $res.

231  {
232  function level_sort($a, $b)
233  {
234  if ($a->getMinimumLevel() == $b->getMinimumLevel()) {
235  $res = strcmp($a->getShortName(), $b->getShortName());
236  if ($res == 0) {
237  return strcmp($a->getOfficialName(), $b->getOfficialName());
238  } else {
239  return $res;
240  }
241  }
242  return ($a->getMinimumLevel() < $b->getMinimumLevel()) ? -1 : 1;
243  }
244  usort($this->mark_steps, 'level_sort');
245  }
foreach($_POST as $key=> $value) $res

Field Documentation

◆ $mark_steps

ASS_MarkSchema::$mark_steps

Definition at line 19 of file class.assMarkSchema.php.

Referenced by getMarkSteps(), and setMarkSteps().


The documentation for this class was generated from the following file: