59 $this->
ctrl = $DIC[
'ilCtrl'];
60 $this->
lng = $DIC[
'lng'];
61 $this->tpl = $DIC[
'tpl'];
62 $this->
toolbar = $DIC[
'ilToolbar'];
64 $this->post_wrapper = $DIC->http()->wrapper()->post();
65 $this->request = $DIC->http()->request();
67 $this->ui_factory = $DIC[
'ui.factory'];
68 $this->ui_renderer = $DIC[
'ui.renderer'];
76 $cmd = $this->
ctrl->getCmd(
'showMarkSchema');
77 if ($cmd === self::RESET_MARK_BUTTON_LABEL) {
78 $cmd =
'resetToSimpleMarkSchema';
85 if (!$this->
object->canEditMarks()) {
86 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
87 $this->
ctrl->redirect($this,
'showMarkSchema');
93 if (!$this->
object->canEditEctsGrades()) {
94 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
95 $this->
ctrl->redirect($this,
'showMarkSchema');
104 $this->
object->getMarkSchema()->addMarkStep();
106 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'mark_schema_invalid'),
true);
113 $no_save_error =
true;
114 $this->
object->getMarkSchema()->flush();
115 $postdata = $this->request->getParsedBody();
116 foreach ($postdata as
$key => $value) {
117 if (preg_match(
'/mark_short_(\d+)/',
$key, $matches)) {
119 if (isset($postdata[
"passed_$matches[1]"])) {
123 $percentage = str_replace(
',',
'.',
ilUtil::stripSlashes($postdata[
"mark_percentage_$matches[1]"]));
124 if (!is_numeric($percentage)
125 || (
float) $percentage < 0.0
126 || (
float) $percentage > 100.0) {
128 $no_save_error =
false;
131 $this->
object->getMarkSchema()->addMarkStep(
140 return $no_save_error;
147 $this->
object->getMarkSchema()->createSimpleSchema(
148 $this->
lng->txt(
'failed_short'),
149 $this->
lng->txt(
'failed_official'),
152 $this->
lng->txt(
'passed_short'),
153 $this->
lng->txt(
'passed_official'),
157 $this->
object->getMarkSchema()->saveToDb($this->
object->getTestId());
163 $marks_trafo = $this->
refinery->custom()->transformation(
164 function ($vs): ?array {
165 if ($vs === null || !is_array($vs)) {
171 $deleted_mark_steps = null;
172 if ($this->post_wrapper->has(
'marks')) {
173 $deleted_mark_steps = $this->post_wrapper->retrieve(
180 if (!isset($deleted_mark_steps) || !is_array($deleted_mark_steps)) {
186 $schema = clone $this->
object->getMarkSchema();
187 $schema->deleteMarkSteps($deleted_mark_steps);
188 $check_result = $schema->checkMarks();
189 if (is_string($check_result)) {
190 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($check_result),
true);
196 if (!empty($deleted_mark_steps)) {
197 $this->
object->getMarkSchema()->deleteMarkSteps($deleted_mark_steps);
199 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'tst_delete_missing_mark'));
201 $this->
object->getMarkSchema()->saveToDb($this->
object->getTestId());
211 $result = $this->
object->checkMarks();
213 $result =
'mark_schema_invalid';
216 if (is_string($result)) {
217 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($result),
true);
219 $this->
object->getMarkSchema()->saveToDb($this->
object->getMarkSchemaForeignId());
220 $this->
object->onMarkSchemaSaved();
221 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
222 $this->
object->getMarkSchema()->flush();
223 $this->
object->getMarkSchema()->loadFromDb($this->
object->getTestId());
231 require_once
'Modules/Test/interfaces/interface.ilEctsGradesEnabled.php';
237 if (!$this->
object->canEditMarks()) {
238 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'cannot_edit_marks'));
241 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this,
'showMarkSchema'));
243 require_once
'Modules/Test/classes/tables/class.ilMarkSchemaTableGUI.php';
245 $mark_schema_table->setShowRowsSelector(
false);
247 $rendered_modal =
'';
248 if ($this->
object->canEditMarks()) {
249 $confirmation_modal = $this->ui_factory->modal()->interruptive(
250 $this->
lng->txt(self::RESET_MARK_BUTTON_LABEL),
251 $this->
lng->txt(
'tst_mark_reset_to_simple_mark_schema_confirmation'),
252 $this->
ctrl->getFormAction($this,
'resetToSimpleMarkSchema')
253 )->withActionButtonLabel(self::RESET_MARK_BUTTON_LABEL);
254 $this->
populateToolbar($confirmation_modal, $mark_schema_table->getId());
255 $rendered_modal = $this->ui_renderer->render($confirmation_modal);
258 $this->tpl->setContent(
259 $mark_schema_table->getHTML() . $rendered_modal
265 $create_simple_schema_button = $this->ui_factory->button()->standard(
266 $this->
lng->txt(self::RESET_MARK_BUTTON_LABEL),
267 $confirmation_modal->getShowSignal()
269 $this->
toolbar->addComponent($create_simple_schema_button);
272 $this->
toolbar->addComponent($create_step_button);
277 return $this->ui_factory->button()->standard(
278 $this->
lng->txt(
'tst_mark_create_new_mark_step'),
281 fn (
string $id):
string =>
282 "{$id}.addEventListener('click', " 284 .
' e.preventDefault();' 285 .
' e.target.name = "cmd[addMarkStep]";' 286 .
" let form = document.getElementById('form_{$mark_schema_id}');" 287 .
' let submitter = e.target.cloneNode();' 288 .
' submitter.style.visibility = "hidden";' 289 .
' form.appendChild(submitter);' 290 .
' form.requestSubmit(submitter);' 300 $data[
'ectcs_status'] = $this->
object->getECTSOutput();
301 $data[
'use_ects_fx'] = preg_match(
'/\d+/', $this->
object->getECTSFX());
302 $data[
'ects_fx_threshold'] = $this->
object->getECTSFX();
304 $ects_grades = $this->
object->getECTSGrades();
305 for (
$i = ord(
'a');
$i <= ord(
'e');
$i++) {
307 $data[
'ects_grade_' . $mark] = $ects_grades[chr(
$i - 32)];
315 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
317 $disabled = !$this->
object->canEditEctsGrades();
320 $form->setFormAction($this->
ctrl->getFormAction($this,
'saveEctsForm'));
321 $form->setTitle($this->
lng->txt(
'ects_output_of_ects_grades'));
323 $allow_ects_marks =
new ilCheckboxInputGUI($this->
lng->txt(
'ects_allow_ects_grades'),
'ectcs_status');
325 for (
$i = ord(
'a');
$i <= ord(
'e');
$i++) {
330 $this->
lng->txt(
'ects_grade_desc_prefix') .
' ' . $this->
lng->txt(
'ects_grade_' . $mark .
'_desc')
332 $mark_step->setSize(5);
333 $mark_step->allowDecimals(
true);
334 $mark_step->setMinValue(0,
true);
335 $mark_step->setMaxValue(100,
true);
336 $mark_step->setSuffix($this->
lng->txt(
'percentile'));
337 $mark_step->setRequired(
true);
338 $mark_step->setDisabled($disabled);
339 $allow_ects_marks->addSubItem($mark_step);
344 $this->
lng->txt(
'ects_grade_desc_prefix') .
' ' . $this->
lng->txt(
'ects_grade_f_desc')
346 $allow_ects_marks->addSubItem($mark_step);
350 $allow_ects_marks->addSubItem($use_ects_fx);
354 $this->
lng->txt(
'ects_grade_desc_prefix') .
' ' . $this->
lng->txt(
'ects_grade_fx_desc')
356 $use_ects_fx->addSubItem($mark_step);
358 $threshold =
new ilNumberInputGUI($this->
lng->txt(
'ects_fx_threshold'),
'ects_fx_threshold');
359 $threshold->
setInfo($this->
lng->txt(
'ects_fx_threshold_info'));
360 $threshold->setSuffix($this->
lng->txt(
'percentile'));
361 $threshold->allowDecimals(
true);
362 $threshold->setSize(5);
363 $threshold->setRequired(
true);
364 $threshold->setDisabled($disabled);
365 $use_ects_fx->addSubItem($threshold);
368 $form->addItem($allow_ects_marks);
371 $form->addCommandButton(
'saveEctsForm', $this->
lng->txt(
'save'));
382 if (!$ects_form->checkInput()) {
383 $ects_form->setValuesByPost();
389 for (
$i = ord(
'a');
$i <= ord(
'e');
$i++) {
391 $grades[chr(
$i - 32)] = $ects_form->getInput(
'ects_grade_' . $mark);
394 $this->
object->setECTSGrades($grades);
395 $this->
object->setECTSOutput((
int) $ects_form->getInput(
'ectcs_status'));
396 $this->
object->setECTSFX(
397 $ects_form->getInput(
'use_ects_fx') && preg_match(
'/\d+/', $ects_form->getInput(
'ects_fx_threshold')) ?
398 $ects_form->getInput(
'ects_fx_threshold') :
402 $this->
object->saveECTSStatus();
404 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'));
405 $ects_form->setValuesByPost();
ensureEctsGradesCanBeEdited()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalPageTemplate $tpl
populateToolbar(InterruptiveModal $confirmation_modal, string $mark_schema_id)
showMarkSchema(?ilPropertyFormGUI $ects_form=null)
objectSupportsEctsGrades()
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
resetToSimpleMarkSchema()
withAdditionalOnLoadCode(Closure $binder)
RequestWrapper $post_wrapper
Interface RequestWrapper.
ensureMarkSchemaCanBeEdited()
populateEctsForm(ilPropertyFormGUI $form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
const RESET_MARK_BUTTON_LABEL
buildCreateStepButton(string $mark_schema_id)