19 declare(strict_types=1);
34 string $formAction =
'',
35 string $saveCommand =
'saveSettings',
36 bool $isEditable =
false 50 $this->
setTitle($this->
lng->txt(
'tos_tos_settings'));
55 $status->setChecked($this->tos->getStatus());
56 $status->setInfo($this->
lng->txt(
'tos_status_desc'));
57 $status->setDisabled(!$this->isEditable);
60 $reevaluateOnLogin =
new ilCheckboxInputGUI($this->
lng->txt(
'tos_reevaluate_on_login'),
'tos_reevaluate_on_login');
62 $reevaluateOnLogin->setChecked($this->tos->shouldReevaluateOnLogin());
63 $reevaluateOnLogin->setInfo($this->
lng->txt(
'tos_reevaluate_on_login_desc'));
64 $reevaluateOnLogin->setDisabled(!$this->isEditable);
65 $status->addSubItem($reevaluateOnLogin);
67 if ($this->isEditable) {
74 $this->check_input_called = $status;
79 return $this->translatedError !==
'';
87 public function saveObject():
bool 94 if (!(
int) $this->
getInput(
'tos_status')) {
95 $this->tos->saveStatus((
bool) $this->
getInput(
'tos_status'));
101 $this->tos->saveStatus((
bool) $this->
getInput(
'tos_status'));
102 $this->tos->setReevaluateOnLogin((
bool) $this->
getInput(
'tos_reevaluate_on_login'));
106 if (!$this->tos->getStatus()) {
107 $this->translatedError = $this->
lng->txt(
'tos_no_documents_exist_cant_save');
110 $item->setChecked(
false);
114 $this->tos->saveStatus((
bool) $this->
getInput(
'tos_status'));
115 $this->tos->setReevaluateOnLogin((
bool) $this->
getInput(
'tos_reevaluate_on_login'));
static where($where, $operator=null)
__construct(Container $dic, ilPlugin $plugin)
Class ilObjTermsOfService.