36 $ilCtrl = $DIC[
'ilCtrl'];
39 $this->
ctrl = $ilCtrl;
40 $this->is_editable = $this->
object->canEditMarks();
42 $this->
setId(
'mark_schema_gui_' . $this->
object->getMarkSchemaForeignId());
48 $this->
setRowTemplate(
'tpl.il_as_tst_mark_schema_row.html',
'Modules/Test');
52 if ($this->
object->canEditMarks()) {
66 $this->
initJS($DIC->ui()->mainTemplate());
72 $this->
addColumn($this->
lng->txt(
'tst_mark_short_form'),
'');
73 $this->
addColumn($this->
lng->txt(
'tst_mark_official_form'),
'');
74 $this->
addColumn($this->
lng->txt(
'tst_mark_minimum_level'),
'');
75 $this->
addColumn($this->
lng->txt(
'tst_mark_passed'),
'',
'1');
80 $this->
object->getMarkSchema()->sort();
84 $marks = $this->
object->getMarkSchema()->getMarkSteps();
85 foreach ($marks as
$key => $value) {
88 'mark_short' => $value->getShortName(),
89 'mark_official' => $value->getOfficialName(),
90 'mark_percentage' => $value->getMinimumLevel(),
91 'mark_passed' => $value->getPassed()
100 $tpl->addOnloadCode(
" 101 let form = document.querySelector('form[name=\"{$this->getFormName()}\"]'); 102 let button = form.querySelector('input[name=\"cmd[saveMarks]\"]'); 103 if (form && button) { 104 form.addEventListener('keydown', function (e) { 105 if (e.key === 'Enter') { 107 form.requestSubmit(button); 119 $short_name =
new ilTextInputGUI(
'',
'mark_short_' . $a_set[
'mark_id']);
120 $short_name->setValue($a_set[
'mark_short']);
121 $short_name->setDisabled(!$this->is_editable);
122 $short_name->setMaxLength(15);
123 $short_name->setSize(10);
125 $official_name =
new ilTextInputGUI(
'',
'mark_official_' . $a_set[
'mark_id']);
126 $official_name->setSize(20);
127 $official_name->setDisabled(!$this->
object->canEditMarks());
128 $official_name->setMaxLength(50);
129 $official_name->setValue($a_set[
'mark_official']);
131 $percentage =
new ilNumberInputGUI(
'',
'mark_percentage_' . $a_set[
'mark_id']);
132 $percentage->allowDecimals(
true);
133 $percentage->setValue($a_set[
'mark_percentage']);
134 $percentage->setSize(10);
135 $percentage->setDisabled(!$this->is_editable);
136 $percentage->setMinValue(0);
137 $percentage->setMaxValue(100);
139 $this->tpl->setVariable(
'VAL_MARK_ID', $a_set[
'mark_id']);
140 $this->tpl->setVariable(
144 $this->tpl->setVariable(
'VAL_SHORT_NAME', $short_name->render());
145 $this->tpl->setVariable(
'VAL_OFFICIAL_NAME', $official_name->render());
146 $this->tpl->setVariable(
'VAL_PERCENTAGE', $percentage->render());
147 $this->tpl->setVariable(
148 'VAL_PASSED_CHECKBOX',
150 (
bool) $a_set[
'mark_passed'],
151 'passed_' . $a_set[
'mark_id'],
setNoEntriesText(string $a_text)
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setFormName(string $a_name="")
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
ilMarkSchemaAware $object
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
addMultiCommand(string $a_cmd, string $a_text)
initJS(ilGlobalTemplateInterface $tpl)