1 <?php declare(strict_types=1);
52 $this->
setTitle($this->lng->txt(
'tos_tos_settings'));
57 $status->setChecked($this->tos->getStatus());
58 $status->setInfo($this->lng->txt(
'tos_status_desc'));
59 $status->setDisabled(!$this->isEditable);
62 $reevaluateOnLogin =
new ilCheckboxInputGUI($this->lng->txt(
'tos_reevaluate_on_login'),
'tos_reevaluate_on_login');
64 $reevaluateOnLogin->setChecked($this->tos->shouldReevaluateOnLogin());
65 $reevaluateOnLogin->setInfo($this->lng->txt(
'tos_reevaluate_on_login_desc'));
66 $reevaluateOnLogin->setDisabled(!$this->isEditable);
67 $status->addSubItem($reevaluateOnLogin);
69 if ($this->isEditable) {
79 $this->check_input_called = $status;
87 return strlen($this->translatedError) > 0;
108 if (!(
int) $this->
getInput(
'tos_status')) {
109 $this->tos->saveStatus((
bool) $this->
getInput(
'tos_status'));
115 $this->tos->saveStatus((
bool) $this->
getInput(
'tos_status'));
116 $this->tos->setReevaluateOnLogin((
bool) $this->
getInput(
'tos_reevaluate_on_login'));
120 if (!$this->tos->getStatus()) {
121 $this->translatedError = $this->lng->txt(
'tos_no_documents_exist_cant_save');
126 $this->tos->saveStatus((
bool) $this->
getInput(
'tos_status'));
127 $this->tos->setReevaluateOnLogin((
bool) $this->
getInput(
'tos_reevaluate_on_login'));
static where($where, $operator=null)
__construct(Container $dic, ilPlugin $plugin)
Class ilObjTermsOfService.