19 declare(strict_types=1);
43 string $formAction =
'',
44 string $saveCommand =
'saveDocument',
45 string $cancelCommand =
'showDocuments' 62 $this->check_input_called = $status;
65 protected function initForm():
void 67 if ($this->assignment->getId() > 0) {
68 $this->
setTitle($this->
lng->txt(
'tos_form_edit_criterion_head'));
70 $this->
setTitle($this->
lng->txt(
'tos_form_attach_criterion_head'));
76 $document->setValue($this->document->getTitle());
81 $criteriaSelection->setValue($this->assignment->getCriterionId());
84 foreach ($this->criterionTypeFactory->getTypesByIdentMap() as $criterion) {
86 if ($first && !$this->assignment->getId()) {
87 $criteriaSelection->setValue($criterion->getTypeIdent());
91 $criterionGui = $criterion->ui($this->
lng);
92 if ($this->assignment->getCriterionId() === $criterion->getTypeIdent()) {
93 $criterionGui->appendOption(
95 $this->assignment->getCriterionValue()
101 $this->
addItem($criteriaSelection);
109 return $this->translatedError !==
'';
125 $this->criterionTypeFactory,
131 if (!$uniqueAssignmentConstraint->accepts($this->assignment)) {
132 $this->
getItemByPostVar(
'criterion')->setAlert($this->
lng->txt(
'tos_criterion_assignment_must_be_unique_insert'));
133 if ($this->assignment->getId() > 0) {
134 $this->
getItemByPostVar(
'criterion')->setAlert($this->
lng->txt(
'tos_criterion_assignment_must_be_unique_update'));
137 $this->translatedError = $this->
lng->txt(
'form_input_not_valid');
142 if (!$this->assignment->getId()) {
143 $this->document->attachCriterion($this->assignment);
145 $this->document->save();
157 $criterionType = $this->criterionTypeFactory->findByTypeIdent($this->
getInput(
'criterion'));
158 $criterionGui = $criterionType->ui($this->
lng);
160 $this->assignment->setCriterionId($criterionType->getTypeIdent());
161 $this->assignment->setCriterionValue($criterionGui->getConfigByForm($this));
163 if ($this->assignment->getId() > 0) {
164 $this->assignment->setLastModifiedUsrId($this->actor->getId());
166 $this->assignment->setOwnerUsrId($this->actor->getId());
170 $this->translatedError = $this->
lng->txt(
'form_input_not_valid');
Class ilTermsOfServiceCriterionConfig.
Class ilTermsOfServiceDocumentCriterionAssignment.
Class ilTermsOfServiceDocument.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
Class ilTermsOfServiceDocumentCriterionAssignmentConstraint.
Interface ilTermsOfServiceCriterionTypeFactoryInterface.