4 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
5 include_once(
"./Services/JSON/classes/class.ilJsonUtil.php");
47 $ilTabs = $DIC[
'ilTabs'];
49 $ilTabs->activateTab(
"content");
51 echo $this->form->getHTML();
53 $options =
new stdClass();
54 $options->dropZone =
"#ilFileUploadDropZone_1";
55 $options->fileInput =
"#ilFileUploadInput_1";
56 $options->submitButton =
"uploadFiles";
57 $options->cancelButton =
"cancelAll";
58 $options->dropArea =
"#ilFileUploadDropArea_1";
59 $options->fileList =
"#ilFileUploadList_1";
60 $options->fileSelectButton =
"#ilFileUploadFileSelect_1";
61 echo
"<script language='javascript' type='text/javascript'>var fileUpload1 = new ilFileUpload(1, " .
ilJsonUtil::encode($options) .
");</script>";
75 include_once(
"./Services/Form/classes/class.ilDragDropFileInputGUI.php");
76 include_once(
"./Services/jQuery/classes/class.iljQueryUtil.php");
79 $this->form->setId(
"upload");
80 $this->form->setMultipart(
true);
81 $this->form->setHideLabels();
85 $this->form->addItem($file);
87 $this->form->addCommandButton(
"uploadFiles",
$lng->txt(
"upload"));
88 $this->form->addCommandButton(
"cancelAll",
$lng->txt(
"cancel"));
90 $this->form->setTableWidth(
"100%");
91 $this->form->setTitle(
$lng->txt(
"upload_files_title"));
95 $this->form->setTitle(
$lng->txt(
"upload_files"));
96 $this->form->setFormAction(
$ilCtrl->getFormAction($this,
"uploadFiles"));
97 $this->form->setTarget(
"cld_blank_target");
103 echo
"<script language='javascript' type='text/javascript'>window.parent.il.CloudFileList.afterUpload('cancel');</script>";
119 if ($this->form->checkInput()) {
121 $fileresult = $this->
handleFileUpload($this->form->getInput(
"upload_files"));
134 header(
'Vary: Accept');
135 header(
'Content-type: text/plain');
146 $response->fileSize = intval($file_upload[
"size"]);
147 $response->fileType = $file_upload[
"type"];
148 $response->fileUnzipped = $file_upload[
"extract"];
153 if ($file_upload[
"extract"]) {
157 include_once
'./Services/Utilities/classes/class.ilFileUtils.php';
178 $file_tree->uploadFileToService(
$_SESSION[
"cld_folder_id"], $file_upload[
"tmp_name"],
$_POST[
"title"]);
195 protected function uploadDirectory($dir, $parent_id, $file_tree, $keep_structure =
true)
197 $dirlist = opendir($dir);
199 while (
false !== ($file = readdir($dirlist))) {
200 if (!is_file($dir .
"/" . $file) && !is_dir($dir .
"/" . $file)) {
205 if ($file !=
'.' && $file !=
'..') {
206 $newpath = $dir .
'/' . $file;
207 if (is_dir($newpath)) {
208 if ($keep_structure) {
209 $newnode = $file_tree->addFolderToService($parent_id, basename($newpath));
215 $file_tree->uploadFileToService($parent_id, $newpath, basename($newpath));
static getFileTreeFromSession()
uploadFiles()
Update properties.
uploadDirectory($dir, $parent_id, $file_tree, $keep_structure=true)
Recursive Method to upload a directory.
static encode($mixed, $suppress_native=false)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static processZipFile($a_directory, $a_file, $structure, $ref_id=null, $containerType=null, $tree=null, $access_handler=null)
unzips in given directory and processes uploaded zip for use as single files
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static ilTempnam($a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
Class ilCloudPluginUploadGUI.
executeCommand()
execute command
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
handleFileUpload($file_upload)