19 declare(strict_types=1);
31 'edit' =>
'editSettings',
32 'save' =>
'saveSettings' 38 public function __construct(?array $a_data,
int $a_id,
bool $a_call_by_reference)
42 $this->webdav_dic->init($DIC);
51 $next_class = $this->
ctrl->getNextClass($this);
52 $cmd = $this->
ctrl->getCmd();
56 if (!$this->
access->checkAccess(
'read',
'', $this->object->getRefId())) {
57 $this->error_handling->raiseError(
58 $this->
lng->txt(
'no_permission'),
59 $this->error_handling->MESSAGE
63 switch ($next_class) {
64 case strtolower(ilWebDAVMountInstructionsUploadGUI::class):
65 $document_gui = $this->webdav_dic->mountinstructions_upload();
66 $document_gui->setRefId($this->
object->getRefId());
67 $this->tabs_gui->activateTab(
'webdav_upload_instructions');
68 $this->
ctrl->forwardCommand($document_gui);
72 if (!$cmd || $cmd ===
'view' || !in_array($cmd, self::SETTING_COMMANDS)) {
73 $cmd = self::SETTING_COMMANDS[
'edit'];
83 if ($this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
84 $this->tabs_gui->addTab(
85 'webdav_general_settings',
86 $this->
lng->txt(
"webdav_general_settings"),
87 $this->
ctrl->getLinkTarget($this, self::SETTING_COMMANDS[
'edit'])
89 $this->tabs_gui->addTab(
90 'webdav_upload_instructions',
91 $this->
lng->txt(
"webdav_upload_instructions"),
92 $this->
ctrl->getLinkTargetByClass(ilWebDAVMountInstructionsUploadGUI::class)
100 parent::setTitleAndDescription();
101 $this->tpl->setDescription($this->
object->getDescription());
107 $form->setFormAction($this->
ctrl->getFormAction($this));
108 $form->setTitle($this->
lng->txt(
"settings"));
111 $cb_prop->setValue(
'1');
112 $cb_prop->setChecked($this->
object->isWebdavEnabled());
113 $form->addItem($cb_prop);
115 $cb_prop =
new ilCheckboxInputGUI($this->
lng->txt(
"webdav_enable_versioning"),
"enable_versioning_webdav");
116 $cb_prop->setValue(
'1');
117 $cb_prop->setInfo($this->
lng->txt(
"webdav_versioning_info"));
118 $cb_prop->setChecked($this->
object->isWebdavVersioningEnabled());
119 $form->addItem($cb_prop);
121 $form->addCommandButton(self::SETTING_COMMANDS[
'save'], $this->
lng->txt(
'save'));
128 $this->tabs_gui->activateTab(
'webdav_general_settings');
130 if (!$this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
131 $this->error_handling->raiseError(
132 $this->
lng->txt(
"no_permission"),
133 $this->error_handling->WARNING
139 $this->tpl->setContent($form->getHTML());
144 if (!$this->rbac_system->checkAccess(
"write", $this->object->getRefId())) {
145 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_permission'),
true);
146 $this->
ctrl->redirect($this, self::SETTING_COMMANDS[
'edit']);
150 if ($form->checkInput()) {
151 $this->
object->setWebdavEnabled(($form->getInput(
'enable_webdav') ===
'1'));
152 $this->
object->setWebdavVersioningEnabled(($form->getInput(
'enable_versioning_webdav') ===
'1'));
153 $this->
object->update();
154 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
155 $this->
ctrl->redirect($this, self::SETTING_COMMANDS[
'edit']);
157 $form->setValuesByPost();
158 $this->tpl->setContent($form->getHTML());
ilErrorHandling $error_handling
const ilWebDAVDIC $webdav_dic
prepareOutput(bool $show_sub_objects=true)
Class ilObjectGUI Basic methods of all Output classes.
__construct(Container $dic, ilPlugin $plugin)
__construct(?array $a_data, int $a_id, bool $a_call_by_reference)