19 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
37 $this->mark_steps = array();
56 string $txt_failed_short =
"failed",
57 string $txt_failed_official =
"failed",
58 float $percentage_failed = 0,
59 int $failed_passed = 0,
60 string $txt_passed_short =
"passed",
61 string $txt_passed_official =
"passed",
62 float $percentage_passed = 50,
63 int $passed_passed = 1
66 $this->
addMarkStep($txt_failed_short, $txt_failed_official, $percentage_failed, $failed_passed);
67 $this->
addMarkStep($txt_passed_short, $txt_passed_official, $percentage_passed, $passed_passed);
81 public function addMarkStep(
string $txt_short =
"",
string $txt_official =
"", $percentage = 0, $passed = 0): void
83 require_once
'./Modules/Test/classes/class.assMark.php';
84 $mark =
new ASS_Mark($txt_short, $txt_official, $percentage, $passed);
85 array_push($this->mark_steps, $mark);
95 include_once
"./Modules/Test/classes/class.ilObjAssessmentFolder.php";
97 $result =
$ilDB->queryF(
98 "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level",
102 if ($result->numRows()) {
104 while ($row =
$ilDB->fetchAssoc($result)) {
105 $oldmarks[$row[
"minimum_level"]] = $row;
115 "DELETE FROM tst_mark WHERE test_fi = %s",
119 if (count($this->mark_steps) == 0) {
124 foreach ($this->mark_steps as
$key => $value) {
125 $next_id =
$ilDB->nextId(
'tst_mark');
127 "INSERT INTO tst_mark (mark_id, test_fi, short_name, official_name, minimum_level, passed, tstamp) VALUES (%s, %s, %s, %s, %s, %s, %s)",
128 array(
'integer',
'integer',
'text',
'text',
'float',
'text',
'integer'),
132 substr($value->getShortName(), 0, 15),
133 substr($value->getOfficialName(), 0, 50),
134 $value->getMinimumLevel(),
141 $result =
$ilDB->queryF(
142 "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level",
147 if ($result->numRows()) {
149 while ($row =
$ilDB->fetchAssoc($result)) {
150 $newmarks[$row[
"minimum_level"]] = $row;
153 foreach ($oldmarks as $level => $row) {
154 if (array_key_exists($level, $newmarks)) {
155 $difffields = array();
156 foreach ($row as
$key => $value) {
157 if (strcmp($value, $newmarks[$level][
$key]) != 0) {
163 array_push($difffields,
"$key: $value => " . $newmarks[$level][$key]);
168 if (count($difffields)) {
179 foreach ($newmarks as $level => $row) {
180 if (!array_key_exists($level, $oldmarks)) {
194 $ilDB = $DIC[
'ilDB'];
199 $result =
$ilDB->queryF(
200 "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level",
204 if ($result->numRows() > 0) {
208 $data[
"short_name"] ??
'',
209 $data[
"official_name"] ??
'',
210 (
float)
$data[
"minimum_level"],
211 (
int) $data[
"passed"]
219 $this->mark_steps = array();
229 function level_sort(
$a,
$b):
int 231 if (
$a->getMinimumLevel() ==
$b->getMinimumLevel()) {
232 $res = strcmp(
$a->getShortName(),
$b->getShortName());
234 return strcmp(
$a->getOfficialName(),
$b->getOfficialName());
239 return (
$a->getMinimumLevel() <
$b->getMinimumLevel()) ? -1 : 1;
241 usort($this->mark_steps,
'level_sort');
256 if (count($this->mark_steps) < 1) {
259 if (
$index >= count($this->mark_steps)) {
262 unset($this->mark_steps[
$index]);
263 $this->mark_steps = array_values($this->mark_steps);
273 if (!((
$index < 0) or (count($this->mark_steps) < 1))) {
274 unset($this->mark_steps[
$index]);
277 $this->mark_steps = array_values($this->mark_steps);
291 for (
$i = count($this->mark_steps) - 1;
$i >= 0;
$i--) {
292 $curMinLevel = $this->mark_steps[
$i]->getMinimumLevel();
293 $reached = round($percentage, 2);
294 $level = round($curMinLevel, 2);
295 if ($reached >= $level) {
296 return $this->mark_steps[
$i];
315 $ilDB = $DIC[
'ilDB'];
316 $result =
$ilDB->queryF(
317 "SELECT * FROM tst_mark WHERE test_fi = %s ORDER BY minimum_level DESC",
323 while ($row =
$ilDB->fetchAssoc($result)) {
324 if ($percentage >= $row[
"minimum_level"]) {
343 $ilDB = $DIC[
'ilDB'];
344 $result =
$ilDB->queryF(
345 "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",
349 while ($row =
$ilDB->fetchAssoc($result)) {
350 if ($percentage >= $row[
"minimum_level"]) {
367 public static function _getMatchingMarkFromActiveId($active_id, $percentage)
371 $ilDB = $DIC[
'ilDB'];
372 $result =
$ilDB->queryF(
373 "SELECT tst_mark.* FROM tst_active, tst_mark, tst_tests WHERE tst_mark.test_fi = tst_tests.test_id AND tst_tests.test_id = tst_active.test_fi AND tst_active.active_id = %s ORDER BY minimum_level DESC",
379 while ($row =
$ilDB->fetchAssoc($result)) {
380 if ($percentage >= $row[
"minimum_level"]) {
396 $minimum_percentage = 100;
398 for (
$i = 0;
$i < count($this->mark_steps);
$i++) {
399 if ($this->mark_steps[
$i]->getMinimumLevel() < $minimum_percentage) {
400 $minimum_percentage = $this->mark_steps[
$i]->getMinimumLevel();
402 if ($this->mark_steps[
$i]->getPassed()) {
407 if ($minimum_percentage != 0) {
408 return "min_percentage_ne_0";
412 return "no_passed_mark";
436 public function logAction($test_id,
string $logtext =
""):
void 441 include_once
"./Modules/Test/classes/class.ilObjAssessmentFolder.php";
createSimpleSchema(string $txt_failed_short="failed", string $txt_failed_official="failed", float $percentage_failed=0, int $failed_passed=0, string $txt_passed_short="passed", string $txt_passed_official="passed", float $percentage_passed=50, int $passed_passed=1)
Creates a simple mark schema for two mark steps: failed and passed.
static _addLog( $user_id, $object_id, $logtext, $question_id=0, $original_id=0, $test_only=false, $test_ref_id=0)
Add an assessment log entry.
static _getObjectIDFromTestID($test_id)
Returns the ILIAS test object id for a given test id.
sort()
Sorts the mark schema using the minimum level values.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _enabledAssessmentLogging()
static _getMatchingMarkFromObjId($a_obj_id, float $percentage)
Returns the matching mark for a given percentage.
deleteMarkSteps(array $indexes)
Deletes multiple mark steps using their index positions.
checkMarks()
Check the marks for consistency.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
addMarkStep(string $txt_short="", string $txt_official="", $percentage=0, $passed=0)
Adds a mark step to the mark schema.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getMatchingMark($test_id, $percentage)
Returns the matching mark for a given percentage.
deleteMarkStep($index=0)
Deletes the mark step with a given index.
getMatchingMark($percentage)
Returns the matching mark for a given percentage.
setMarkSteps(array $mark_steps)