19 declare(strict_types=1);
51 array $environment = null
53 $trafo = $refinery->custom()->transformation(
55 list($mode, $date) = $v;
56 if (count($date) < 1) {
59 $date = array_shift($date);
61 return [(
int) $mode, $date];
66 if ($reporting_date !== null) {
67 $reporting_date = $reporting_date->setTimezone(
69 )->format($environment[
'user_date_format']->toString() .
' H:i');
72 $results_time_group = $f->switchableGroup(
74 self::SCORE_REPORTING_IMMIDIATLY => $f->group([], $lng->
txt(
'tst_results_access_always'), $lng->
txt(
'tst_results_access_always_desc')),
75 self::SCORE_REPORTING_FINISHED => $f->group([], $lng->
txt(
'tst_results_access_finished'), $lng->
txt(
'tst_results_access_finished_desc')),
76 self::SCORE_REPORTING_AFTER_PASSED => $f->group([], $lng->
txt(
'tst_results_access_passed'), $lng->
txt(
'tst_results_access_passed_desc')),
77 self::SCORE_REPORTING_DATE => $f->group(
79 $f->dateTime($lng->
txt(
'tst_reporting_date'),
"")
80 ->withTimezone($environment[
'user_time_zone'])
82 ->withFormat($environment[
'user_date_format'])
88 $lng->
txt(
'tst_results_access_date'),
89 $lng->
txt(
'tst_results_access_date_desc')
92 $lng->
txt(
'tst_results_access_setting'),
96 ->withAdditionalTransformation($trafo);
102 $optional_group = $f->optionalGroup(
104 'score_reporting_mode' => $results_time_group,
105 'show_grading_status' => $f->checkbox(
106 $lng->
txt(
'tst_results_grading_opt_show_status'),
107 $lng->
txt(
'tst_results_grading_opt_show_status_desc')
109 'show_grading_mark' => $f->checkbox(
110 $lng->
txt(
'tst_results_grading_opt_show_mark'),
111 $lng->
txt(
'tst_results_grading_opt_show_mark_desc')
113 'show_pass_details' => $f->checkbox(
114 $lng->
txt(
'tst_results_grading_opt_show_details'),
115 $lng->
txt(
'tst_results_grading_opt_show_details_desc')
117 'pass_deletion_allowed' => $f->checkbox(
118 $lng->
txt(
'tst_pass_deletion'),
119 $lng->
txt(
'tst_pass_deletion_allowed')
122 $lng->
txt(
'tst_results_access_enabled'),
123 $lng->
txt(
'tst_results_access_enabled_desc')
127 $optional_group = $optional_group->withValue(
137 $optional_group = $optional_group->withValue(null);
140 $fields = [
'score_reporting' => $optional_group];
141 return $f->section($fields, $lng->
txt(
'test_results'))
143 $refinery->custom()->transformation(
148 if ($v[
'score_reporting']) {
149 list($mode, $date) = $v[
'score_reporting'][
'score_reporting_mode'];
151 ->withShowGradingStatusEnabled($v[
'score_reporting'][
'show_grading_status'])
152 ->withShowGradingMarkEnabled($v[
'score_reporting'][
'show_grading_mark'])
153 ->withShowPassDetails($v[
'score_reporting'][
'show_pass_details'])
154 ->withPassDeletionAllowed($v[
'score_reporting'][
'pass_deletion_allowed'])
158 ->withScoreReporting((
int) $mode)
159 ->withReportingDate($date);
175 'reporting_date' => [
'text', (string) $dat],
189 $clone = clone $this;
196 return $this->score_reporting !== self::SCORE_REPORTING_DISABLED;
205 $clone = clone $this;
212 return $this->show_grading_status;
216 $clone = clone $this;
217 $clone->show_grading_status = $show_grading_status;
223 return $this->show_grading_mark;
227 $clone = clone $this;
228 $clone->show_grading_mark = $show_grading_mark;
238 $clone = clone $this;
249 $clone = clone $this;
250 $clone->show_pass_details = $flag;
bool $show_pass_details
this is derived from results_presentation with RESULTPRES_BIT_PASS_DETAILS; see ilObjTestSettingsResu...
getShowGradingMarkEnabled()
__construct(int $test_id)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
const SCORE_REPORTING_AFTER_PASSED
withPassDeletionAllowed(bool $pass_deletion_allowed)
withReportingDate(?\DateTimeImmutable $reporting_date)
withShowPassDetails(bool $flag)
const SCORE_REPORTING_FINISHED
DateTimeImmutable $reporting_date
withShowGradingStatusEnabled(bool $show_grading_status)
const SCORE_REPORTING_DISABLED
const SCORE_REPORTING_DATE
withScoreReporting(int $score_reporting)
const STORAGE_DATE_FORMAT
getShowGradingStatusEnabled()
bool $pass_deletion_allowed
__construct(Container $dic, ilPlugin $plugin)
const SCORE_REPORTING_IMMIDIATLY
withShowGradingMarkEnabled(bool $show_grading_mark)
toForm(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, array $environment=null)
getScoreReportingEnabled()
Refinery Factory $refinery