19 declare(strict_types=1);
47 $this->mark_steps = [];
53 $clone->test_id = $test_id;
59 return $this->test_id;
64 return $this->nr_of_passed_marks === 1;
69 return $this->nr_of_zero_percentage_marks === 1;
88 string $txt_failed_short =
'failed',
89 string $txt_failed_official =
'failed',
90 float $percentage_failed = 0,
91 bool $failed_passed =
false,
92 string $txt_passed_short =
'passed',
93 string $txt_passed_official =
'passed',
94 float $percentage_passed = 50,
95 bool $passed_passed =
true 98 new Mark($txt_failed_short, $txt_failed_official, $percentage_failed, $failed_passed),
99 new Mark($txt_passed_short, $txt_passed_official, $percentage_passed, $passed_passed)
106 $reached = round($percentage, 2);
107 foreach (array_reverse($this->mark_steps) as $step) {
108 $level = round($step->getMinimumLevel(), 2);
109 if ($reached >= $level) {
118 return $this->nr_of_zero_percentage_marks === 0;
123 return $this->nr_of_passed_marks === 0;
128 $has_to_be_passed =
false;
129 foreach ($this->mark_steps as $step) {
130 if ($has_to_be_passed && !$step->getPassed()) {
133 if ($step->getPassed() ===
true) {
134 $has_to_be_passed =
true;
153 $clone = clone $this;
154 $clone->mark_steps = $this->
sort($mark_steps);
155 [$clone->nr_of_passed_marks, $clone->nr_of_zero_percentage_marks] = array_reduce(
157 function (array
$c,
Mark $v): array {
171 private function sort(array $mark_steps): array
175 function (
$a,
$b):
int {
176 if (
$a->getMinimumLevel() ===
$b->getMinimumLevel()) {
177 $res = strcmp(
$a->getShortName(),
$b->getShortName());
179 return strcmp(
$a->getOfficialName(),
$b->getOfficialName());
184 return (
$a->getMinimumLevel() <
$b->getMinimumLevel()) ? -1 : 1;
195 $log_array[$mark->getShortName()] = [
toLog(AdditionalInformationGenerator $additional_info)
int $nr_of_zero_percentage_marks
A class defining mark schemas for assessment test objects.
__construct(private int $test_id)
withMarkSteps(array $mark_steps)
A class defining marks for assessment test objects.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkForFailedAfterPassed()
createSimpleSchema(string $txt_failed_short='failed', string $txt_failed_official='failed', float $percentage_failed=0, bool $failed_passed=false, string $txt_passed_short='passed', string $txt_passed_official='passed', float $percentage_passed=50, bool $passed_passed=true)
Creates a simple mark schema for two mark steps: failed and passed.
hasSingleZeroPercentageMark()
checkForMissingZeroPercentage()
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getMatchingMark(float $percentage)