37 include_once
"./Services/Object/classes/class.ilObject.php";
65 public function __construct($a_id = 0, $a_call_by_reference =
true)
81 $this->inlineFileExtensions = $newValue;
105 $this->downloadWithUploadedFilename = $newValue;
154 $ilClientIniFile = $DIC[
'ilClientIniFile'];
155 $settings =
new ilSetting(
'file_access');
158 $ilClientIniFile->error(null);
160 if (!$ilClientIniFile->groupExists(
'file_access')) {
161 $ilClientIniFile->addGroup(
'file_access');
163 $ilClientIniFile->setVariable(
'file_access',
'download_with_uploaded_filename', $this->downloadWithUploadedFilename ?
'1' :
'0');
164 $ilClientIniFile->write();
166 if ($ilClientIniFile->getError()) {
169 $ilErr->raiseError($ilClientIniFile->getError(),
$ilErr->WARNING);
172 require_once
'Services/Administration/classes/class.ilSetting.php';
173 $settings->set(
'inline_file_extensions', $this->inlineFileExtensions);
185 $settings =
new ilSetting(
'file_access');
186 $ilClientIniFile = $DIC[
'ilClientIniFile'];
187 $this->downloadWithUploadedFilename = $ilClientIniFile->readVariable(
'file_access',
'download_with_uploaded_filename') ==
'1';
188 $ilClientIniFile->ERROR =
false;
190 require_once
'Services/Administration/classes/class.ilSetting.php';
191 $this->inlineFileExtensions = $settings->get(
'inline_file_extensions',
'');
204 $val = ini_get(
'upload_max_filesize');
207 $last = strtolower($val[strlen($val) - 1]);
setDownloadWithUploadedFilename($newValue)
Sets the downloadWithUploadedFilename property.
setInlineFileExtensions($newValue)
Sets the inlineFileExtensions property.
$downloadWithUploadedFilename
Boolean property.
Class ilObjFileAccessSettings*.
getUploadMaxFilesize()
TODO: Check if needed and refactor.
update()
update object in db
getInlineFileExtensions()
Gets the inlineFileExtensions property.
$inlineFileExtensions
String 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