55 $this->settings =
new ilSetting(
"fileupload");
56 $this->dndUploadEnabled = $this->settings->get(
"dnd_upload_enabled",
true) ==
true;
57 $this->repositoryDndUploadEnabled = $this->settings->get(
"repository_dnd_upload_enabled",
true) ==
true;
58 $this->concurrentUploads = $this->settings->get(
"concurrent_upload_count", self::CONCURRENT_UPLOADS_DEFAULT);
70 $instance->dndUploadEnabled = $newValue ==
true;
93 $instance->repositoryDndUploadEnabled = $newValue ==
true;
94 $instance->settings->set(
"repository_dnd_upload_enabled",
$instance->repositoryDndUploadEnabled);
116 if (is_numeric($newValue))
119 $newValue = (int)$newValue;
122 else if ($newValue > self::CONCURRENT_UPLOADS_MAX)
131 $instance->concurrentUploads = $newValue;
151 if (self::$instance == null)