83 public function __construct($a_data, $a_id, $a_call_by_reference)
90 $this->ctrl = $DIC[
'ilCtrl'];
91 $this->db = $DIC->database();
92 $this->error_handling = $DIC[
"ilErr"];
93 $this->filesystem = $DIC->filesystem();
94 $this->
http = $DIC->http();
95 $this->lng = $DIC->language();
96 $this->logger = $DIC->logger()->root();
97 $this->rbacsystem = $DIC[
'rbacsystem'];
99 $this->tabs = $DIC[
'ilTabs'];
100 $this->tpl = $DIC[
'tpl'];
101 $this->tree = $DIC[
'tree'];
102 $this->ui_factory = $DIC->ui()->factory();
103 $this->ui_renderer = $DIC->ui()->renderer();
104 $this->upload = $DIC->upload();
116 $next_class = $this->ctrl->getNextClass($this);
117 $cmd = $this->ctrl->getCmd();
121 if (!$this->access->checkAccess(
'read',
'', $this->object->getRefId())) {
122 $this->error_handling->raiseError(
123 $this->lng->txt(
'no_permission'),
124 $this->error_handling->error_obj->MESSAGE
128 switch ($next_class) {
129 case strtolower(ilWebDAVMountInstructionsUploadGUI::class):
137 $this->error_handling,
147 $this->tabs_gui->activateTab(
'webdav_upload_instructions');
148 $this->ctrl->forwardCommand($document_gui);
152 if (!$cmd || $cmd ==
'view') {
153 $cmd = self::CMD_EDIT_SETTINGS;
168 if ($this->rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
169 $this->tabs_gui->addTab(
170 'webdav_general_settings',
171 $this->lng->txt(
"webdav_general_settings"),
172 $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS)
174 $this->tabs_gui->addTab(
175 'webdav_upload_instructions',
176 $this->lng->txt(
"webdav_upload_instructions"),
177 $this->ctrl->getLinkTargetByClass(ilWebDAVMountInstructionsUploadGUI::class)
188 parent::setTitleAndDescription();
189 $this->tpl->setDescription($this->object->getDescription());
196 $form->setFormAction($this->ctrl->getFormAction($this));
197 $form->setTitle($this->lng->txt(
"settings"));
202 $cb_prop->setChecked($this->object->isWebdavEnabled());
203 $form->addItem($cb_prop);
206 $cb_prop =
new ilCheckboxInputGUI($this->lng->txt(
"webdav_enable_versioning"),
"enable_versioning_webdav");
208 $cb_prop->setInfo($this->lng->txt(
"webdav_versioning_info"));
209 $cb_prop->setChecked($this->object->isWebdavVersioningEnabled());
210 $form->addItem($cb_prop);
213 $form->addCommandButton(self::CMD_SAVE_SETTINGS, $this->lng->txt(
'save'));
223 $this->tabs_gui->activateTab(
'webdav_general_settings');
225 if (!$this->rbacsystem->checkAccess(
"visible,read", $this->object->getRefId())) {
226 $this->error_handling->raiseError(
227 $this->lng->txt(
"no_permission"),
228 $this->error_handling->WARNING
234 $this->tpl->setContent($form->getHTML());
243 if (!$this->rbacsystem->checkAccess(
"write", $this->object->getRefId())) {
245 $this->ctrl->redirect($this, self::CMD_EDIT_SETTINGS);
249 if ($form->checkInput()) {
250 $this->
object->setWebdavEnabled(
$_POST[
'enable_webdav'] ==
'1');
251 $this->
object->setWebdavVersioningEnabled(
$_POST[
'enable_versioning_webdav'] ==
'1');
252 $this->
object->update();
253 ilUtil::sendSuccess($this->lng->txt(
'settings_saved'),
true);
254 $this->ctrl->redirect($this, self::CMD_EDIT_SETTINGS);
256 $form->setValuesByPost();
257 $this->tpl->setContent($form->getHTML());
executeCommand()
Execute command.
saveSettings()
Save settings.
prepareOutput($a_show_subobjects=true)
prepare output
editSettings()
Edit settings.
static http()
Fetches the global http state from ILIAS.
__construct($a_data, $a_id, $a_call_by_reference)
Constructor.
Class ilObjectGUI Basic methods of all Output classes.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
__construct(Container $dic, ilPlugin $plugin)
setTitleAndDescription()
called by prepare output