4 require_once
"./Services/Object/classes/class.ilObject2GUI.php";
5 require_once
"./Modules/File/classes/class.ilObjFile.php";
6 require_once
"./Modules/File/classes/class.ilObjFileAccess.php";
37 $next_class = $this->ctrl->getNextClass($this);
38 $cmd = $this->ctrl->getCmd();
40 if($this->id_type == self::WORKSPACE_NODE_ID)
42 include_once
"Services/Form/classes/class.ilFileInputGUI.php";
49 if(IS_PAYMENT_ENABLED)
51 include_once
'./Services/Payment/classes/class.ilPaymentObject.php';
52 if(ANONYMOUS_USER_ID == $ilUser->getId() && isset(
$_GET[
'transaction']))
54 $transaction =
$_GET[
'transaction'];
55 include_once
'./Services/Payment/classes/class.ilPaymentBookings.php';
60 ?
$_GET[
'purchasetype'] : NULL) ))
63 $this->tpl->getStandardTemplate();
65 include_once
'./Services/Payment/classes/class.ilShopPurchaseGUI.php';
67 $ret = $this->ctrl->forwardCommand($pp);
71 else if($this->id_type == self::REPOSITORY_NODE_ID
74 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->node_id);
75 $link = $ilCtrl->getLinkTargetByClass(
"ilrepositorygui",
"infoScreen");
76 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id",
$_GET[
"ref_id"]);
79 $ilNavigationHistory->addItem($this->node_id,
88 case "ilinfoscreengui":
95 $ilErr->raiseError($this->lng->txt(
'permission_denied'),$ilErr->WARNING);
98 $ilTabs->activateTab(
"id_meta");
100 include_once
'Services/MetaData/classes/class.ilMDEditorGUI.php';
102 $md_gui =&
new ilMDEditorGUI($this->object->getId(), 0, $this->
object->getType());
103 $md_gui->
addObserver($this->
object,
'MDUpdateListener',
'General');
106 $md_gui->addObserver($this->
object,
'MDUpdateListener',
'Technical');
108 $this->ctrl->forwardCommand($md_gui);
112 case 'ilpermissiongui':
113 $ilTabs->activateTab(
"id_permissions");
114 include_once(
"Services/AccessControl/classes/class.ilPermissionGUI.php");
116 $ret =& $this->ctrl->forwardCommand($perm_gui);
122 $ilErr->raiseError($this->lng->txt(
'permission_denied'),$ilErr->WARNING);
124 $ilTabs->activateTab(
"export");
125 include_once(
"./Services/Export/classes/class.ilExportGUI.php");
127 $exp_gui->addFormat(
"xml");
128 $ret = $this->ctrl->forwardCommand($exp_gui);
131 case 'ilobjectcopygui':
132 include_once
'./Services/Object/classes/class.ilObjectCopyGUI.php';
134 $cp->setType(
'file');
135 $this->ctrl->forwardCommand($cp);
139 case "ilworkspaceaccessgui";
140 $ilTabs->activateTab(
"id_permissions");
141 include_once(
'./Services/PersonalWorkspace/classes/class.ilWorkspaceAccessGUI.php');
143 $this->ctrl->forwardCommand($wspacc);
146 case "ilcommonactiondispatchergui":
147 include_once(
"Services/Object/classes/class.ilCommonActionDispatcherGUI.php");
149 $this->ctrl->forwardCommand($gui);
154 if($this->id_type == self::WORKSPACE_NODE_ID)
161 $ilCtrl->setCmd(
"infoScreen");
163 $ilTabs->clearTargets();
164 return parent::executeCommand();
183 if($this->id_type == self::WORKSPACE_NODE_ID)
185 include_once
"Services/DiskQuota/classes/class.ilDiskQuotaHandler.php";
188 $this->lng->loadLanguageModule(
"file");
190 $this->ctrl->redirect($this,
"cancel");
195 require_once(
"Services/FileUpload/classes/class.ilFileUploadSettings.php");
207 if($this->id_type != self::WORKSPACE_NODE_ID)
222 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
224 $single_form_gui->setMultipart(
true);
228 $in_title->
setInfo($this->lng->txt(
"if_no_title_then_filename"));
231 $single_form_gui->addItem($in_title);
235 $single_form_gui->addItem($in_descr);
240 $single_form_gui->addItem($in_file);
242 $single_form_gui->addCommandButton(
"save", $this->lng->txt($this->type.
"_add"));
243 $single_form_gui->addCommandButton(
"saveAndMeta", $this->lng->txt(
"file_add_and_metadata"));
244 $single_form_gui->addCommandButton(
"cancel", $lng->txt(
"cancel"));
246 $single_form_gui->setTableWidth(
"600px");
248 $single_form_gui->setTitle($this->lng->txt($this->type.
"_new"));
249 $single_form_gui->setTitleIcon(
ilUtil::getImagePath(
'icon_file.png'), $this->lng->txt(
'obj_file'));
251 $this->ctrl->setParameter($this,
"new_type",
"file");
253 $single_form_gui->setFormAction($this->ctrl->getFormAction($this,
"save"));
255 return $single_form_gui;
269 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"),$this->ilErr->MESSAGE);
274 if ($single_form_gui->checkInput())
276 $title = $single_form_gui->getInput(
"title");
277 $description = $single_form_gui->getInput(
"description");
278 $upload_file = $single_form_gui->getInput(
"upload_file");
280 if (trim($title) ==
"")
282 $title = $upload_file[
"name"];
289 if ($titleExtension != $fileExtension && strlen($fileExtension) > 0)
291 $title .=
'.'.$fileExtension;
297 include_once(
"./Modules/File/classes/class.ilObjFile.php");
299 $fileObj->setTitle($title);
300 $fileObj->setDescription($description);
301 $fileObj->setFileName($upload_file[
"name"]);
303 include_once(
"./Services/Utilities/classes/class.ilMimeTypeUtil.php");
305 "", $upload_file[
"name"], $upload_file[
"type"]));
306 $fileObj->setFileSize($upload_file[
"size"]);
307 $this->object_id = $fileObj->create();
312 $fileObj->createDirectory();
313 $fileObj->getUploadFile($upload_file[
"tmp_name"],
314 $upload_file[
"name"]);
319 require_once(
'Services/Tracking/classes/class.ilChangeEvent.php');
325 if ($this->ctrl->getCmd() ==
"saveAndMeta")
327 $this->ctrl->setParameter($this,
"new_type",
"");
328 $target = $this->ctrl->getLinkTargetByClass(array(
"ilobjfilegui",
"ilmdeditorgui"),
"listSection",
"",
false,
false);
333 $this->ctrl->returnToParent($this);
338 $single_form_gui->setValuesByPost();
339 $this->tpl->setContent($single_form_gui->getHTML());
360 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
362 $zip_form_gui->setMultipart(
true);
367 $in_file->setSuffixes(array(
"zip"));
368 $zip_form_gui->addItem($in_file);
371 $in_str =
new ilCheckboxInputGUI($this->lng->txt(
"take_over_structure"),
"adopt_structure");
372 $in_str->
setInfo($this->lng->txt(
"take_over_structure_info"));
373 $zip_form_gui->addItem($in_str);
375 $zip_form_gui->addCommandButton(
"saveUnzip", $this->lng->txt($this->type.
"_add"));
376 $zip_form_gui->addCommandButton(
"cancel", $lng->txt(
"cancel"));
378 $zip_form_gui->setTableWidth(
"600px");
380 $zip_form_gui->setTitle($this->lng->txt(
"header_zip"));
381 $zip_form_gui->setTitleIcon(
ilUtil::getImagePath(
'icon_file.png'), $this->lng->txt(
'obj_file'));
383 $this->ctrl->setParameter($this,
"new_type",
"file");
385 $zip_form_gui->setFormAction($this->ctrl->getFormAction($this,
"saveUnzip"));
387 return $zip_form_gui;
401 if ($zip_form_gui->checkInput())
403 $zip_file = $zip_form_gui->getInput(
"zip_file");
404 $adopt_structure = $zip_form_gui->getInput(
"adopt_structure");
406 include_once (
"Services/Utilities/classes/class.ilFileUtils.php");
413 if($this->id_type != self::WORKSPACE_NODE_ID)
430 $containerType =
"WorkspaceFolder";
439 $containerType =
"Category";
445 $containerType =
"Folder";
458 $zip_file[
"tmp_name"],
459 ($adopt_structure && $permission),
472 $this->ctrl->returnToParent($this);
476 $zip_form_gui->setValuesByPost();
477 $this->tpl->setContent($zip_form_gui->getHTML());
482 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"),$this->ilErr->MESSAGE);
496 if(!$form->checkInput())
498 $ilTabs->activateTab(
"settings");
499 $form->setValuesByPost();
500 $this->tpl->setContent($form->getHTML());
504 $data = $form->getInput(
'file');
507 while (substr(
$data[
"name"],-1) ==
'/')
513 $title = $form->getInput(
'title');
514 if(strlen(trim($title)) == 0)
520 $title = $this->
object->checkFileExtension(
$filename,$title);
522 $this->
object->setTitle($title);
524 if (!empty(
$data[
"name"]))
526 switch($form->getInput(
'replace'))
529 $this->
object->deleteVersions();
530 $this->
object->clearDataDirectory();
531 $this->
object->replaceFile(
$data[
'tmp_name'],
$data[
'name']);
534 $this->
object->addFileVersion(
$data[
'tmp_name'],
$data[
'name']);
537 $this->
object->setFileName(
$data[
'name']);
538 include_once(
"./Services/Utilities/classes/class.ilMimeTypeUtil.php");
541 $this->
object->setFileSize(
$data[
'size']);
544 $this->
object->setDescription($form->getInput(
'description'));
545 $this->
object->setRating($form->getInput(
'rating'));
547 $this->
update = $this->
object->update();
550 if (!empty(
$data[
"name"]))
552 require_once(
'Services/Tracking/classes/class.ilChangeEvent.php');
560 include_once
'Modules/File/classes/class.ilECSFileSettings.php';
562 $ecs->handleSettingsUpdate();
579 $ilErr->raiseError($this->lng->txt(
"msg_no_perm_write"));
582 $ilTabs->activateTab(
"settings");
587 $val[
'title'] = $this->
object->getTitle();
588 $val[
'description'] = $this->
object->getLongDescription();
589 $val[
'rating'] = $this->
object->hasRating();
590 $form->setValuesByArray($val);
593 include_once
'Modules/File/classes/class.ilECSFileSettings.php';
595 $ecs->addSettingsToForm($form,
'file');
597 $this->tpl->setContent($form->getHTML());
608 include_once(
'./Services/Form/classes/class.ilPropertyFormGUI.php');
610 $this->lng->loadLanguageModule(
'file');
613 $form->setFormAction($this->ctrl->getFormAction($this),
'update');
614 $form->setTitle($this->lng->txt(
'file_edit'));
615 $form->addCommandButton(
'update',$this->lng->txt(
'save'));
616 $form->addCommandButton(
'cancel',$this->lng->txt(
'cancel'));
619 $title->
setValue($this->object->getTitle());
620 $title->setInfo($this->lng->txt(
"if_no_title_then_filename"));
621 $form->addItem($title);
623 $upload_possible =
true;
624 if($this->id_type == self::WORKSPACE_NODE_ID)
626 include_once
"Services/DiskQuota/classes/class.ilDiskQuotaHandler.php";
633 $file->setRequired(
false);
635 $form->addItem(
$file);
640 $replace =
new ilRadioOption($this->lng->txt(
'replace_file'),1);
641 $replace->
setInfo($this->lng->txt(
'replace_file_info'));
642 $group->addOption($replace);
645 $keep =
new ilRadioOption($this->lng->txt(
'file_new_version'),0);
646 $keep->
setInfo($this->lng->txt(
'file_new_version_info'));
647 $group->addOption($keep);
649 $file->addSubItem($group);
654 $file->setValue($this->lng->txt(
"personal_workspace_quota_exceeded_warning"));
655 $form->addItem(
$file);
661 $form->addItem($desc);
663 if($this->id_type == self::REPOSITORY_NODE_ID)
665 $this->lng->loadLanguageModule(
'rating');
667 $rate->
setInfo($this->lng->txt(
'rating_activate_rating_info'));
668 $form->addItem($rate);
678 if(ANONYMOUS_USER_ID == $ilUser->getId() && isset(
$_GET[
'transaction']) )
680 $this->
object->sendFile(
$_GET[
"hist_id"]);
686 require_once(
'Services/Tracking/classes/class.ilChangeEvent.php');
690 $this->
object->getId(), $ilUser->getId());
693 $this->
object->sendFile(
$_GET[
"hist_id"]);
697 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"),$this->ilErr->MESSAGE);
712 $ilTabs->activateTab(
"id_versions");
716 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"),$this->ilErr->MESSAGE);
720 $versions = $this->
object->getVersions();
723 require_once(
"Modules/File/classes/class.ilFileVersionTableGUI.php");
725 $table->setMaxCount(
sizeof($versions));
726 $table->setData($versions);
728 $this->tpl->setVariable(
"ADM_CONTENT", $table->getHTML());
738 $this->ctrl->setCmd(
"showSummary");
739 $this->ctrl->setCmdClass(
"ilinfoscreengui");
750 $ilTabs->activateTab(
"id_info");
754 $ilErr->raiseError($this->lng->txt(
"msg_no_perm_read"));
757 include_once(
"./Services/InfoScreen/classes/class.ilInfoScreenGUI.php");
763 $this->lng->loadLanguageModule(
"file");
766 if ($this->id_type == self::REPOSITORY_NODE_ID)
769 $info->addButton($this->lng->txt(
"file_download"), $this->ctrl->getLinkTarget($this,
"sendfile"),
"",
"top",
true);
772 $info->enablePrivateNotes();
780 $info->enableNewsEditing(
false);
784 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
786 if ($enable_internal_rss)
788 $info->setBlockProperty(
"news",
"settings",
true);
789 $info->setBlockProperty(
"news",
"public_notifications_option",
true);
795 $info->addMetaDataSections($this->object->getId(),0, $this->
object->getType());
797 $info->addSection($this->lng->txt(
"file_info"));
798 $info->addProperty($this->lng->txt(
"filename"),
799 $this->
object->getFileName());
801 $info->addProperty($this->lng->txt(
"type"),
802 $this->
object->guessFileType());
804 $info->addProperty($this->lng->txt(
"size"),
806 $info->addProperty($this->lng->txt(
"version"),
807 $this->
object->getVersion());
810 $uploader = $this->
object->getVersions();
811 $uploader = array_shift($uploader);
812 $uploader = $uploader[
"user_id"];
814 $this->lng->loadLanguageModule(
"file");
815 include_once
"Services/User/classes/class.ilUserUtil.php";
819 if ($this->id_type == self::REPOSITORY_NODE_ID && $this->
checkPermissionBool(
"read",
"sendfile"))
821 $tpl =
new ilTemplate(
"tpl.download_link.html",
true,
true,
"Modules/File");
823 $info->addProperty($this->lng->txt(
"download_link"),
$tpl->get());
826 if($this->id_type == self::WORKSPACE_NODE_ID)
832 include_once(
"./Services/Preview/classes/class.ilPreview.php");
833 if (!$this->ctrl->isAsynch() &&
837 include_once(
"./Services/Preview/classes/class.ilPreviewGUI.php");
841 switch ($this->id_type)
843 case self::WORKSPACE_NODE_ID:
844 case self::WORKSPACE_OBJECT_ID:
854 $info->addProperty($this->lng->txt(
"preview"),
$preview->getInlineHTML());
860 $this->ctrl->forwardCommand($info);
867 global $ilTabs,
$lng, $ilHelp;
869 $ilHelp->setScreenIdComponent(
"file");
871 $this->ctrl->setParameter($this,
"ref_id",$this->node_id);
875 $ilTabs->addTab(
"id_info",
876 $lng->txt(
"info_short"),
877 $this->ctrl->getLinkTargetByClass(array(
"ilobjfilegui",
"ilinfoscreengui"),
"showSummary"));
882 $ilTabs->addTab(
"settings",
884 $this->ctrl->getLinkTarget($this,
"edit"));
889 $ilTabs->addTab(
"id_versions",
890 $lng->txt(
"versions"),
891 $this->ctrl->getLinkTarget($this,
"versions"));
897 $ilTabs->addTab(
"id_meta",
898 $lng->txt(
"meta_data"),
899 $this->ctrl->getLinkTargetByClass(array(
'ilobjfilegui',
'ilmdeditorgui'),
'listSection'));
905 $ilTabs->addTab(
"export",
907 $this->ctrl->getLinkTargetByClass(
"ilexportgui",
""));
914 function _goto($a_target, $a_additional = null)
918 if($a_additional && substr($a_additional, -3) ==
"wsp")
920 $_GET[
"baseClass"] =
"ilsharedresourceGUI";
921 $_GET[
"wsp_id"] = $a_target;
922 include(
"ilias.php");
927 if($a_additional && substr($a_additional, -8) ==
"download")
934 if ($ilAccess->checkAccess(
"visible",
"", $a_target))
938 else if ($ilAccess->checkAccess(
"read",
"", ROOT_FOLDER_ID))
945 $ilErr->raiseError($lng->txt(
"msg_no_perm_read"), $ilErr->FATAL);
955 if (is_object($this->
object))
957 $ilLocator->addItem($this->object->getTitle(), $this->ctrl->getLinkTarget($this,
""),
"",
$this->node_id);
968 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
970 $dnd_form_gui->setMultipart(
true);
971 $dnd_form_gui->setHideLabels();
974 include_once(
"Services/Form/classes/class.ilDragDropFileInputGUI.php");
977 $dnd_input->setCommandButtonNames(
"uploadFiles",
"cancel");
978 $dnd_form_gui->addItem($dnd_input);
981 $dnd_form_gui->addCommandButton(
"uploadFiles", $this->lng->txt(
"upload_files"));
982 $dnd_form_gui->addCommandButton(
"cancel", $this->lng->txt(
"cancel"));
984 $dnd_form_gui->setTableWidth(
"100%");
986 $dnd_form_gui->setTitle($this->lng->txt(
"upload_files_title"));
987 $dnd_form_gui->setTitleIcon(
ilUtil::getImagePath(
'icon_file.gif'), $this->lng->txt(
'obj_file'));
989 $this->ctrl->setParameter($this,
"new_type",
"file");
990 $dnd_form_gui->setFormAction($this->ctrl->getFormAction($this,
"uploadFiles"));
992 return $dnd_form_gui;
1000 include_once(
"./Services/JSON/classes/class.ilJsonUtil.php");
1002 $response =
new stdClass();
1003 $response->error = null;
1004 $response->debug = null;
1010 if ($dnd_form_gui->checkInput())
1016 $response->error = $this->lng->txt(
"permission_denied");
1021 $fileresult = $this->
handleFileUpload($dnd_form_gui->getInput(
"upload_files"));
1023 $response = (object)array_merge((array)$response, (array)$fileresult);
1028 $response->error = $ex->getMessage() .
" ## " . $ex->getTraceAsString();
1033 $dnd_input = $dnd_form_gui->getItemByPostVar(
"upload_files");
1034 $response->error = $dnd_input->getAlert();
1038 header(
'Vary: Accept');
1039 header(
'Content-type: text/plain');
1060 $temp_name = $file_upload[
"tmp_name"];
1069 $response =
new stdClass();
1071 $response->fileSize = intval(
$size);
1072 $response->fileType = $type;
1073 $response->fileUnzipped = $extract;
1074 $response->error = null;
1080 $adopt_structure = $keep_structure;
1082 include_once (
"Services/Utilities/classes/class.ilFileUtils.php");
1089 if($this->id_type != self::WORKSPACE_NODE_ID)
1105 $containerType =
"WorkspaceFolder";
1114 $containerType =
"Category";
1120 $containerType =
"Folder";
1136 ($adopt_structure && $permission),
1144 $response->error = $e->getMessage();
1148 $response->error = $ex->getMessage();
1155 if (trim($title) ==
"")
1164 if ($titleExtension != $fileExtension && strlen($fileExtension) > 0)
1166 $title .=
'.'.$fileExtension;
1172 include_once(
"./Modules/File/classes/class.ilObjFile.php");
1174 $fileObj->setTitle($title);
1175 $fileObj->setDescription($description);
1178 include_once(
"./Services/Utilities/classes/class.ilMimeTypeUtil.php");
1180 $fileObj->setFileSize(
$size);
1181 $this->object_id = $fileObj->create();
1186 $fileObj->createDirectory();
1187 $fileObj->raiseUploadError(
false);
1188 $fileObj->getUploadFile($temp_name,
$filename);
1193 require_once(
'./Services/Tracking/classes/class.ilChangeEvent.php');
1206 global $ilTabs, $ilLocator;
1210 $version_ids = isset(
$_GET[
"hist_id"]) ? array(
$_GET[
"hist_id"]) :
$_POST[
"hist_id"];
1212 if (count($version_ids) < 1)
1215 $this->ctrl->redirect($this,
"versions");
1219 $ilTabs->activateTab(
"id_versions");
1222 $versionsToKeep = array_udiff($this->object->getVersions(), $version_ids, array($this,
"compareHistoryIds"));
1223 if (count($versionsToKeep) < 1)
1229 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
1231 $conf_gui->setFormAction($this->ctrl->getFormAction($this,
"versions"));
1232 $conf_gui->setCancel($this->lng->txt(
"cancel"),
"cancelDeleteFile");
1233 $conf_gui->setConfirm($this->lng->txt(
"confirm"),
"confirmDeleteFile");
1235 $conf_gui->addItem(
"id[]", $this->ref_id, $this->object->getTitle(),
1237 $this->lng->txt(
"icon").
" ".$this->lng->txt(
"obj_".$this->object->getType()));
1239 $html = $conf_gui->getHTML();
1243 include_once(
"./Modules/File/classes/class.ilFileVersionTableGUI.php");
1246 $versions = $this->
object->getVersions($version_ids);
1249 $table->setMaxCount(
sizeof($versions));
1250 $table->setData($versions);
1252 $html = $table->getHTML();
1255 $this->tpl->setVariable(
'ADM_CONTENT', $html);
1269 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"), $this->ilErr->MESSAGE);
1273 if (count(
$_POST[
"hist_id"]) > 0)
1275 $this->
object->deleteVersions(
$_POST[
"hist_id"]);
1279 $this->ctrl->setParameter($this,
"hist_id",
"");
1280 $this->ctrl->redirect($this,
"versions");
1288 $this->ctrl->redirect($this,
"versions");
1299 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"), $this->ilErr->MESSAGE);
1303 include_once(
"./Services/Repository/classes/class.ilRepUtilGUI.php");
1305 $ru->deleteObjects($this->parent_id, array($this->ref_id));
1308 $this->ctrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->parent_id);
1309 $this->ctrl->redirectByClass(
"ilrepositorygui");
1317 $this->ctrl->redirect($this,
"versions");
1330 $v1 = (int)$v1[
"hist_entry_id"];
1331 else if (!is_int($v1))
1335 $v2 = (
int)$v2[
"hist_entry_id"];
1336 else if (!is_int($v2))
1352 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"), $this->ilErr->MESSAGE);
1357 $version_ids = isset(
$_GET[
"hist_id"]) ? array(
$_GET[
"hist_id"]) :
$_POST[
"hist_id"];
1360 if (count($version_ids) != 1)
1363 $this->ctrl->redirect($this,
"versions");
1367 $new_version = $this->
object->rollback($version_ids[0]);
1369 ilUtil::sendSuccess(sprintf($this->lng->txt(
"file_rollback_done"), $new_version[
"rollback_version"]),
true);
1370 $this->ctrl->redirect($this,
"versions");
1375 $lg = parent::initHeaderAction($a_sub_type, $a_sub_id);
1378 if($this->object->hasRating())
1380 $lg->enableRating(
true, null,
false,
1381 array(
"ilcommonactiondispatchergui",
"ilratinggui"));
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
initSingleUploadForm()
FORM: Init single upload form.
This class represents an option in a radio group.
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
infoScreenForward()
show information screen
static _getPermanentDownloadLink($ref_id)
Gets the permanent download link for the file.
handleFileUpload($file_upload)
Handles the upload of a single file and adds it to the parent object.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_node_id=null)
Check permission.
New implementation of ilObjectGUI.
rollbackVersion()
Performs a rollback with the selected file version.
GUI class for the workflow of copying objects.
cancelDeleteFile()
Cancels the file deletion.
const TITLE_LENGTH
max length of object title
getAccessHandler()
Get access handler.
static _getFileExtension($a_file_name)
Gets the file extension of the specified file name.
initZipUploadForm($a_mode="create")
FORM: Init zip upload form.
getPermanentLinkWidget($a_append=null, $a_center=false)
_goto($a_target, $a_additional=null)
static _requiresPurchaseToAccess($a_ref_id, $a_purchasetype='')
this function should be used by all buyable repository objects !!
fillCloneTemplate($a_tpl_varname, $a_type)
addObserver(&$a_class, $a_method, $a_element)
static _gotoRepositoryRoot($a_raise_error=false)
Goto repository root.
static _lookupTitle($a_id)
lookup object title
setInfo($a_info)
Set Info.
static getNamePresentation($a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true)
Default behaviour is:
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
compareHistoryIds($v1, $v2)
Compares two versions either by passing a history entry or an id.
Export User Interface Class.
static encode($mixed, $suppress_native=false)
static hasPreview($a_obj_id, $a_type="")
Determines whether the object with the specified reference id has a preview.
static getMimeType($a_file="", $a_filename="", $a_mime="")
Get Mime type.
initHeaderAction($a_sub_type=null, $a_sub_id=null)
static _gotoRepositoryNode($a_ref_id, $a_cmd="frameset")
Goto repository root.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
confirmDeleteFile()
Deletes this file object.
static _lookupObjId($a_id)
special template class to simplify handling of ITX/PEAR
handleAutoRating(ilObject $a_new_obj)
Repository GUI Utilities.
This class represents a text property in a property form.
static isUploadPossible($a_additional_size=null)
uploadFiles()
Called after a file was uploaded.
saveUnzip()
saveUnzip object
getTargetFrame($a_cmd, $a_target_frame="")
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendQuestion($a_info="", $a_keep=false)
Send Question to Screen.
static _lookupType($a_id, $a_reference=false)
lookup object type
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
_recordReadEvent($a_type, $a_ref_id, $obj_id, $usr_id, $isCatchupWriteEvents=true, $a_ext_rc=false, $a_ext_time=false)
Records a read event and catches up with write events.
putObjectInTree(ilObject $a_obj, $a_parent_node_id=null)
Add object to tree at given position.
static ilTempnam()
Create a temporary file in an ILIAS writable directory.
This class represents a non editable value in a property form.
setRows($a_rows)
Set Rows.
infoScreen()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
GUI class for file objects.
This class represents a text area property in a property form.
confirmDeleteVersions()
Deletes the file versions that were confirmed by the user.
initMultiUploadForm()
Initializes the upload form for multiple files.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
deleteVersions()
Displays a confirmation screen with selected file versions that should be deleted.
cancelDeleteVersions()
Cancels the file version deletion.
setValue($a_value)
Set Value.
_catchupWriteEvents($obj_id, $usr_id, $timestamp=null)
Catches up with all write events which occured before the specified timestamp.
static redirect($a_script)
http redirect to other script
versions()
file versions/history
addHeaderAction()
Add header action menu.
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static _readBookingByTransaction($a_transaction)
_lookupFileSize($a_id)
Lookups the file size of the file in bytes.
Class ilFileVersionTableGUI.
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
_recordWriteEvent($obj_id, $usr_id, $action, $parent_obj_id=null)
Records a write event.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
static isDragAndDropUploadEnabled()
Gets whether drag and drop file upload is enabled.
update()
updates object entry in object_data
Class to report exception.
Confirmation screen class.