39 include_once
"./Services/Object/classes/class.ilObject.php";
89 public function __construct($a_id = 0, $a_call_by_reference =
true)
105 $this->webdavEnabled = $newValue;
122 $this->webdavVersioningEnabled = $newValue;
141 $this->webdavActionsVisible = $newValue;
163 return self::_getDefaultWebfolderInstructions();
187 $this->customWebfolderInstructionsEnabled = $newValue;
200 $this->inlineFileExtensions = $newValue;
224 $this->downloadWithUploadedFilename = $newValue;
273 $ilClientIniFile = $DIC[
'ilClientIniFile'];
274 $settings =
new ilSetting(
'file_access');
277 $ilClientIniFile->error(null);
279 if (!$ilClientIniFile->groupExists(
'file_access')) {
280 $ilClientIniFile->addGroup(
'file_access');
282 $ilClientIniFile->setVariable(
'file_access',
'webdav_enabled', $this->webdavEnabled ?
'1' :
'0');
283 $settings->set(
'webdav_versioning_enabled', $this->webdavVersioningEnabled ?
'1' :
'0');
284 $ilClientIniFile->setVariable(
'file_access',
'webdav_actions_visible', $this->webdavActionsVisible ?
'1' :
'0');
285 $ilClientIniFile->setVariable(
'file_access',
'download_with_uploaded_filename', $this->downloadWithUploadedFilename ?
'1' :
'0');
286 $ilClientIniFile->write();
288 if ($ilClientIniFile->getError()) {
291 $ilErr->raiseError($ilClientIniFile->getError(),
$ilErr->WARNING);
294 require_once
'Services/Administration/classes/class.ilSetting.php';
295 $settings->set(
'inline_file_extensions', $this->inlineFileExtensions);
307 $settings =
new ilSetting(
'file_access');
308 $ilClientIniFile = $DIC[
'ilClientIniFile'];
309 $this->webdavEnabled = $ilClientIniFile->readVariable(
'file_access',
'webdav_enabled') ==
'1';
311 $this->webdavVersioningEnabled = $settings->get(
'webdav_versioning_enabled',
'1') ==
'1';
312 $this->webdavActionsVisible = $ilClientIniFile->readVariable(
'file_access',
'webdav_actions_visible') ==
'1';
313 $this->downloadWithUploadedFilename = $ilClientIniFile->readVariable(
'file_access',
'download_with_uploaded_filename') ==
'1';
314 $ilClientIniFile->ERROR =
false;
316 require_once
'Services/Administration/classes/class.ilSetting.php';
317 $this->inlineFileExtensions = $settings->get(
'inline_file_extensions',
'');
336 return $lng->txt(
'webfolder_instructions_text');
349 $val = ini_get(
'upload_max_filesize');
352 $last = strtolower($val[strlen($val) - 1]);
setDownloadWithUploadedFilename($newValue)
Sets the downloadWithUploadedFilename property.
setInlineFileExtensions($newValue)
Sets the inlineFileExtensions property.
$webdavEnabled
Boolean property.
$downloadWithUploadedFilename
Boolean property.
$customWebfolderInstructionsEnabled
Boolean property.
$customWebfolderInstructions
String property.
setCustomWebfolderInstructionsEnabled($newValue)
Sets the customWebfolderInstructionsEnabled property.
$webdavActionsVisible
Boolean property.
getDefaultWebfolderInstructions()
Gets the defaultWebfolderInstructions property.
getUploadMaxFilesize()
TODO: Check if needed and refactor.
static _getDefaultWebfolderInstructions()
TODO: Check if needed and refactor.
isWebdavEnabled()
Gets the webdavEnabled property.
setWebdavEnabled($newValue)
Sets the webdavEnabled property.
update()
update object in db
setWebdavActionsVisible($newValue)
Sets the webdavActionsVisible property.
isCustomWebfolderInstructionsEnabled()
Gets the customWebfolderInstructionsEnabled property.
isWebdavVersioningEnabled()
getInlineFileExtensions()
Gets the inlineFileExtensions property.
$inlineFileExtensions
String property.
isWebdavActionsVisible()
Gets the webdavActionsVisible property.
setWebdavVersioningEnabled($newValue)
$webdavVersioningEnabled
Boolean property.
__construct($a_id=0, $a_call_by_reference=true)
Constructor.
__construct(Container $dic, ilPlugin $plugin)
write()
write object data into db
isDownloadWithUploadedFilename()
Gets the downloadWithUploadedFilename property.
read()
read object data from db into object