4 include_once(
"./Services/Form/classes/class.ilFileInputGUI.php");
29 return self::$uniqueInc++;
42 $this->lng = $DIC->language();
44 $this->uniqueId = self::getNextUniqueId();
54 $this->archive_suffixes = $a_suffixes;
69 $this->submit_button_name = $a_submit_name;
70 $this->cancel_button_name = $a_cancel_name;
84 include_once(
"./Services/FileUpload/classes/class.ilFileUploadGUI.php");
88 $this->tpl =
new ilTemplate(
"tpl.prop_dndfiles.html",
true,
true,
"Services/Form");
91 $this->tpl->setVariable(
"UPLOAD_ID", $this->uniqueId);
95 $this->tpl->setVariable(
"TXT_SHOW_ALL_DETAILS",
$lng->txt(
'show_all_details'));
96 $this->tpl->setVariable(
"TXT_HIDE_ALL_DETAILS",
$lng->txt(
'hide_all_details'));
97 $this->tpl->setVariable(
"TXT_SELECTED_FILES",
$lng->txt(
'selected_files'));
98 $this->tpl->setVariable(
"TXT_DRAG_FILES_HERE",
$lng->txt(
'drag_files_here'));
99 $this->tpl->setVariable(
"TXT_NUM_OF_SELECTED_FILES",
$lng->txt(
'num_of_selected_files'));
100 $this->tpl->setVariable(
"TXT_SELECT_FILES_FROM_COMPUTER",
$lng->txt(
'select_files_from_computer'));
101 $this->tpl->setVariable(
"TXT_OR",
$lng->txt(
'logic_or'));
105 $this->tpl->setCurrentBlock(
"max_size");
107 $this->tpl->parseCurrentBlock();
110 $this->tpl->setVariable(
"TXT_MAX_SIZE", $quota_legend);
111 $this->tpl->parseCurrentBlock();
117 $upload =
new ilFileUploadGUI(
"ilFileUploadDropZone_" . $this->uniqueId, $this->uniqueId,
false);
118 $upload->enableFormSubmit(
"ilFileUploadInput_" . $this->uniqueId, $this->submit_button_name, $this->cancel_button_name);
119 $upload->setDropAreaId(
"ilFileUploadDropArea_" . $this->uniqueId);
120 $upload->setFileListId(
"ilFileUploadList_" . $this->uniqueId);
121 $upload->setFileSelectButtonId(
"ilFileUploadFileSelect_" . $this->uniqueId);
123 $this->tpl->setVariable(
"FILE_UPLOAD", $upload->getHTML());
125 return $this->tpl->get();
139 if (!is_array($_FILES[$this->
getPostVar()])) {
140 $this->
setAlert(
$lng->txt(
"form_msg_file_size_exceeds"));
145 if ($_FILES[$this->
getPostVar()][
"size"] < 1) {
146 $this->
setAlert(
$lng->txt(
"error_upload_was_zero_bytes"));
151 $inputValid = parent::checkInput();
160 include_once(
"./Services/Utilities/classes/class.ilStr.php");
172 if (is_array($suffixes) && count($suffixes) > 0) {
173 foreach ($suffixes as $suffix) {
174 $list .= $delim .
"." . $suffix;
186 if (is_array($suffixes) && count($suffixes) > 0) {
187 foreach ($suffixes as $suffix) {
188 $list .= $delim .
"\"" . $suffix .
"\"";
199 $umf = ini_get(
"upload_max_filesize");
201 $pms = ini_get(
"post_max_size");
204 $multiplier_a = array(
"K" => 1024,
"M" => 1024 * 1024,
"G" => 1024 * 1024 * 1024);
206 $umf_parts = preg_split(
"/(\d+)([K|G|M])/", $umf, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
207 $pms_parts = preg_split(
"/(\d+)([K|G|M])/", $pms, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
209 if (count($umf_parts) == 2) {
210 $umf = $umf_parts[0] * $multiplier_a[$umf_parts[1]];
212 if (count($pms_parts) == 2) {
213 $pms = $pms_parts[0] * $multiplier_a[$pms_parts[1]];
217 $max_filesize = min($umf, $pms);
219 if (!$max_filesize) {
220 $max_filesize = max($umf, $pms);
223 return $max_filesize;
static initFileUpload()
Initializes the file upload and loads the needed javascripts and styles.
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
static normalizeUtf8String($a_str)
Normalize UTF8 string.
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
__construct(Container $dic, ilPlugin $plugin)