40 public function __construct($a_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
43 $this->lng = $DIC->language();
46 $this->obj_service = $DIC->object();
47 $this->lng->loadLanguageModule(
"file");
60 $ilNavigationHistory = $DIC[
'ilNavigationHistory'];
63 $ilTabs = $DIC[
'ilTabs'];
64 $ilAccess = $DIC[
'ilAccess'];
67 $next_class = $this->ctrl->getNextClass($this);
68 $cmd = $this->ctrl->getCmd();
70 if ($this->id_type == self::WORKSPACE_NODE_ID) {
75 if ($this->id_type == self::REPOSITORY_NODE_ID
78 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->node_id);
79 $link =
$ilCtrl->getLinkTargetByClass(
"ilrepositorygui",
"infoScreen");
80 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id",
$_GET[
"ref_id"]);
83 $ilNavigationHistory->addItem(
93 switch ($next_class) {
94 case "ilinfoscreengui":
98 case 'ilobjectmetadatagui':
100 $ilErr->raiseError($this->lng->txt(
'permission_denied'),
$ilErr->WARNING);
103 $ilTabs->activateTab(
"id_meta");
110 $this->ctrl->forwardCommand($md_gui);
114 case 'ilpermissiongui':
115 $ilTabs->activateTab(
"id_permissions");
117 $ret = $this->ctrl->forwardCommand($perm_gui);
121 $ilTabs->activateTab(
"export");
123 $exp_gui->addFormat(
"xml");
124 $ret = $this->ctrl->forwardCommand($exp_gui);
127 case 'ilobjectcopygui':
129 $cp->setType(
'file');
130 $this->ctrl->forwardCommand($cp);
134 case "ilworkspaceaccessgui":
135 $ilTabs->activateTab(
"id_permissions");
137 $this->ctrl->forwardCommand($wspacc);
140 case "ilcommonactiondispatchergui":
142 $this->ctrl->forwardCommand($gui);
145 case "illearningprogressgui":
146 $ilTabs->activateTab(
'learning_progress');
149 $this->object->getRefId(),
152 $this->ctrl->forwardCommand($new_gui);
153 $this->tabs_gui->setTabActive(
'learning_progress');
155 case strtolower(ilFileVersionsGUI::class):
156 $this->tabs_gui->activateTab(
"id_versions");
159 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"), $this->ilErr->MESSAGE);
165 if ($this->id_type == self::WORKSPACE_NODE_ID) {
172 $ilTabs->clearTargets();
174 return parent::executeCommand();
196 if ($this->id_type == self::WORKSPACE_NODE_ID) {
199 $this->ctrl->redirect($this,
"cancel");
212 if ($this->id_type != self::WORKSPACE_NODE_ID) {
229 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
231 $single_form_gui->setMultipart(
true);
235 $in_title->setInfo($this->lng->txt(
"if_no_title_then_filename"));
238 $single_form_gui->addItem($in_title);
242 $single_form_gui->addItem($in_descr);
247 $single_form_gui->addItem($in_file);
249 $single_form_gui->addCommandButton(
"save", $this->lng->txt($this->type .
"_add"));
250 $single_form_gui->addCommandButton(
"saveAndMeta", $this->lng->txt(
"file_add_and_metadata"));
251 $single_form_gui->addCommandButton(
"cancel",
$lng->txt(
"cancel"));
253 $single_form_gui->setTableWidth(
"600px");
255 $single_form_gui->setTitle($this->lng->txt($this->type .
"_new"));
256 $single_form_gui->setTitleIcon(
ilUtil::getImagePath(
'icon_file.svg'), $this->lng->txt(
'obj_file'));
258 $this->ctrl->setParameter($this,
"new_type",
"file");
260 $single_form_gui->setFormAction($this->ctrl->getFormAction($this,
"save"));
262 return $single_form_gui;
277 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"), $this->ilErr->MESSAGE);
282 if ($single_form_gui->checkInput()) {
283 $title = $single_form_gui->getInput(
"title");
284 $description = $single_form_gui->getInput(
"description");
285 $upload_file = $single_form_gui->getInput(
"upload_file");
287 if (trim($title) ==
"") {
288 $title = $upload_file[
"name"];
293 if ($titleExtension != $fileExtension && strlen($fileExtension) > 0) {
294 $title .=
'.' . $fileExtension;
302 $fileObj->setTitle($title);
303 $fileObj->setDescription($description);
304 $fileObj->setFileName($upload_file[
"name"]);
308 $upload_file[
"name"],
311 $fileObj->setFileSize($upload_file[
"size"]);
312 $this->object_id = $fileObj->create();
317 $fileObj->createDirectory();
318 if (
$result = $fileObj->getUploadFile($upload_file[
"tmp_name"], $upload_file[
"name"])) {
319 $fileObj->setFileName(
$result->getName());
328 ilUtil::sendSuccess($this->lng->txt(
"file_added"),
true);
330 if ($this->ctrl->getCmd() ==
"saveAndMeta") {
331 $this->ctrl->setParameter($this,
"new_type",
"");
332 $target = $this->ctrl->getLinkTargetByClass(array(
"ilobjectmetadatagui",
"ilmdeditorgui"),
"listSection",
"",
false,
false);
335 $this->ctrl->returnToParent($this);
338 $single_form_gui->setValuesByPost();
339 $this->tpl->setContent($single_form_gui->getHTML());
363 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
365 $zip_form_gui->setMultipart(
true);
370 $in_file->setSuffixes(array(
"zip"));
371 $zip_form_gui->addItem($in_file);
374 $in_str =
new ilCheckboxInputGUI($this->lng->txt(
"take_over_structure"),
"adopt_structure");
375 $in_str->
setInfo($this->lng->txt(
"take_over_structure_info"));
376 $zip_form_gui->addItem($in_str);
378 $zip_form_gui->addCommandButton(
"saveUnzip", $this->lng->txt($this->type .
"_add"));
379 $zip_form_gui->addCommandButton(
"cancel",
$lng->txt(
"cancel"));
381 $zip_form_gui->setTableWidth(
"600px");
383 $zip_form_gui->setTitle($this->lng->txt(
"header_zip"));
384 $zip_form_gui->setTitleIcon(
ilUtil::getImagePath(
'icon_file.svg'), $this->lng->txt(
'obj_file'));
386 $this->ctrl->setParameter($this,
"new_type",
"file");
388 $zip_form_gui->setFormAction($this->ctrl->getFormAction($this,
"saveUnzip"));
390 return $zip_form_gui;
404 if ($zip_form_gui->checkInput()) {
405 $zip_file = $zip_form_gui->getInput(
"zip_file");
406 $adopt_structure = $zip_form_gui->getInput(
"adopt_structure");
408 include_once(
"Services/Utilities/classes/class.ilFileUtils.php");
415 if ($this->id_type != self::WORKSPACE_NODE_ID) {
427 $containerType =
"WorkspaceFolder";
436 $containerType =
"Category";
442 $containerType =
"Folder";
455 $zip_file[
"tmp_name"],
456 ($adopt_structure && $permission),
462 ilUtil::sendSuccess($this->lng->txt(
"file_added"),
true);
468 $this->ctrl->returnToParent($this);
470 $zip_form_gui->setValuesByPost();
471 $this->tpl->setContent($zip_form_gui->getHTML());
474 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"), $this->ilErr->MESSAGE);
487 $ilTabs = $DIC[
'ilTabs'];
490 if (!$form->checkInput()) {
491 $ilTabs->activateTab(
"settings");
492 $form->setValuesByPost();
493 $this->tpl->setContent($form->getHTML());
498 $title = $form->getInput(
'title');
501 if (strlen(trim($title)) == 0) {
504 $title = $this->
object->checkFileExtension(
$filename, $title);
506 $this->
object->setTitle($title);
507 $this->
object->setDescription($form->getInput(
'description'));
508 $this->
object->setRating($form->getInput(
'rating'));
510 $this->
update = $this->
object->update();
511 $this->obj_service->commonSettings()->legacyForm($form, $this->
object)->saveTileImage();
514 if (!empty(
$data[
"name"])) {
524 $ecs->handleSettingsUpdate();
526 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
527 ilUtil::redirect($this->ctrl->getLinkTarget($this, self::CMD_EDIT,
'',
false,
false));
539 $ilTabs = $DIC[
'ilTabs'];
543 $ilErr->raiseError($this->lng->txt(
"msg_no_perm_write"));
546 $ilTabs->activateTab(
"settings");
551 $val[
'title'] = $this->
object->getTitle();
552 $val[
'description'] = $this->
object->getLongDescription();
553 $val[
'rating'] = $this->
object->hasRating();
554 $form->setValuesByArray($val);
557 include_once
'Modules/File/classes/class.ilECSFileSettings.php';
559 $ecs->addSettingsToForm($form,
'file');
561 $this->tpl->setContent($form->getHTML());
576 $form->setFormAction($this->ctrl->getFormAction($this,
'update'));
578 $form->setTitle($this->lng->txt(
'file_edit'));
579 $form->addCommandButton(
'update', $this->lng->txt(
'save'));
580 $form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
583 $title->setValue($this->object->getTitle());
584 $title->setInfo($this->lng->txt(
"if_no_title_then_filename"));
585 $form->addItem($title);
587 if ($mode ===
'create') {
588 $upload_possible =
true;
589 if ($this->id_type == self::WORKSPACE_NODE_ID) {
593 if ($upload_possible) {
596 $this->lng->txt(
'obj_file'),
600 $form->addItem($file);
605 $replace =
new ilRadioOption($this->lng->txt(
'replace_file'), 1);
606 $replace->
setInfo($this->lng->txt(
'replace_file_info'));
607 $group->addOption($replace);
609 $keep =
new ilRadioOption($this->lng->txt(
'file_new_version'), 0);
610 $keep->
setInfo($this->lng->txt(
'file_new_version_info'));
611 $group->addOption($keep);
613 $file->addSubItem($group);
614 } elseif ($mode ==
'create') {
616 $file->
setValue($this->lng->txt(
"personal_resources_quota_exceeded_warning"));
617 $form->addItem($file);
621 $o->
setValue($this->lng->txt(
'upload_info_desc'));
626 $form->addItem($desc);
628 if ($this->id_type == self::REPOSITORY_NODE_ID) {
629 $this->lng->loadLanguageModule(
'rating');
631 $rate->
setInfo($this->lng->txt(
'rating_activate_rating_info'));
632 $form->addItem($rate);
636 $presentationHeader->setTitle($this->lng->txt(
'settings_presentation_header'));
637 $form->addItem($presentationHeader);
638 $this->obj_service->commonSettings()->legacyForm($form, $this->
object)->addTileImage();
649 if (ANONYMOUS_USER_ID == $DIC->user()->getId() && isset(
$_GET[
'transaction'])) {
650 $a_hist_entry_id = isset(
$_GET[
"hist_id"]) ?
$_GET[
"hist_id"] : null;
651 $this->
object->sendFile($a_hist_entry_id);
656 require_once(
'Services/Tracking/classes/class.ilChangeEvent.php');
660 $this->object->getType(),
661 $this->
object->getRefId(),
662 $this->
object->getId(),
663 $DIC->user()->getId()
667 require_once
'Services/Tracking/classes/class.ilLPStatusWrapper.php';
670 $a_hist_entry_id = isset(
$_GET[
"hist_id"]) ?
$_GET[
"hist_id"] : null;
671 $this->
object->sendFile($a_hist_entry_id);
673 $this->ilErr->raiseError($this->lng->txt(
"permission_denied"), $this->ilErr->MESSAGE);
676 $this->ilErr->raiseError($e->getMessage(), $this->ilErr->MESSAGE);
688 $this->ctrl->redirectByClass(ilFileVersionsGUI::class);
699 $this->ctrl->setCmd(
"showSummary");
700 $this->ctrl->setCmdClass(
"ilinfoscreengui");
711 $ilTabs = $DIC[
'ilTabs'];
713 $ilToolbar = $DIC[
'ilToolbar'];
715 $ilTabs->activateTab(
"id_info");
718 $ilErr->raiseError($this->lng->txt(
"msg_no_perm_read"));
721 include_once(
"./Services/InfoScreen/classes/class.ilInfoScreenGUI.php");
726 include_once
"Services/UIComponent/Button/classes/class.ilLinkButton.php";
728 $button->setCaption(
"file_download");
729 $button->setPrimary(
true);
732 if ($this->id_type == self::REPOSITORY_NODE_ID) {
735 $button->setUrl($this->ctrl->getLinkTarget($this,
"sendfile"));
738 $ilToolbar->addButtonInstance($button);
741 $info->enablePrivateNotes();
748 $info->enableNewsEditing(
false);
751 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
753 if ($enable_internal_rss) {
754 $info->setBlockProperty(
"news",
"settings",
true);
755 $info->setBlockProperty(
"news",
"public_notifications_option",
true);
760 $info->addMetaDataSections($this->object->getId(), 0, $this->
object->getType());
763 $info->addSection($this->lng->txt(
"file_info"));
764 $info->addProperty($this->lng->txt(
"filename"), $this->secure($this->object->getFileName()));
765 $info->addProperty($this->lng->txt(
"type"), $this->
object->guessFileType());
768 $info->addProperty($this->lng->txt(
"version"), $this->
object->getVersion());
770 if ($this->object->getPageCount() > 0) {
771 $info->addProperty($this->lng->txt(
"page_count"), $this->
object->getPageCount());
775 $uploader = $this->
object->getVersions();
776 $uploader = array_shift($uploader);
777 $uploader = $uploader[
"user_id"];
779 include_once
"Services/User/classes/class.ilUserUtil.php";
783 if ($this->id_type == self::REPOSITORY_NODE_ID && $this->
checkPermissionBool(
"read",
"sendfile")) {
784 $tpl =
new ilTemplate(
"tpl.download_link.html",
true,
true,
"Modules/File");
786 $info->addProperty($this->lng->txt(
"download_link"),
$tpl->get());
789 if ($this->id_type == self::WORKSPACE_NODE_ID) {
794 include_once(
"./Services/Preview/classes/class.ilPreview.php");
795 if (!$this->ctrl->isAsynch()
799 include_once(
"./Services/Preview/classes/class.ilPreviewGUI.php");
803 switch ($this->id_type) {
804 case self::WORKSPACE_NODE_ID:
805 case self::WORKSPACE_OBJECT_ID:
815 $info->addProperty($this->lng->txt(
"preview"),
$preview->getInlineHTML());
821 $this->ctrl->forwardCommand($info);
829 $ilTabs = $DIC[
'ilTabs'];
831 $ilHelp = $DIC[
'ilHelp'];
833 $ilHelp->setScreenIdComponent(
"file");
835 $this->ctrl->setParameter($this,
"ref_id", $this->node_id);
840 $lng->txt(self::CMD_VERSIONS),
848 $lng->txt(
"info_short"),
849 $this->ctrl->getLinkTargetByClass(array(
"ilobjfilegui",
"ilinfoscreengui"),
"showSummary")
856 $lng->txt(
"settings"),
857 $this->ctrl->getLinkTarget($this, self::CMD_EDIT)
864 $lng->txt(
'learning_progress'),
865 $this->ctrl->getLinkTargetByClass(array(__CLASS__,
'illearningprogressgui'),
'')
872 $mdtab = $mdgui->getTab();
876 $lng->txt(
"meta_data"),
887 $this->ctrl->getLinkTargetByClass(
"ilexportgui",
"")
896 public static function _goto($a_target, $a_additional = null)
901 $ilAccess = $DIC[
'ilAccess'];
903 if ($a_additional && substr($a_additional, -3) ==
"wsp") {
904 $_GET[
"baseClass"] =
"ilsharedresourceGUI";
905 $_GET[
"wsp_id"] = $a_target;
906 include(
"ilias.php");
911 if ($a_additional && substr($a_additional, -8) ==
"download") {
917 if ($ilAccess->checkAccess(
"visible",
"", $a_target)
918 || $ilAccess->checkAccess(
"read",
"", $a_target)
922 if ($ilAccess->checkAccess(
"read",
"", ROOT_FOLDER_ID)) {
924 $lng->txt(
"msg_no_perm_read_item"),
941 $ilLocator = $DIC[
'ilLocator'];
943 if (is_object($this->
object)) {
944 $ilLocator->addItem($this->object->getTitle(), $this->ctrl->getLinkTarget($this,
""),
"",
$this->node_id);
956 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
958 $dnd_form_gui->setMultipart(
true);
959 $dnd_form_gui->setHideLabels();
962 include_once(
"Services/Form/classes/class.ilDragDropFileInputGUI.php");
965 $dnd_input->setCommandButtonNames(
"uploadFiles",
"cancel");
966 $dnd_form_gui->addItem($dnd_input);
969 $dnd_form_gui->addCommandButton(
"uploadFiles", $this->lng->txt(
"upload_files"));
970 $dnd_form_gui->addCommandButton(
"cancel", $this->lng->txt(
"cancel"));
972 $dnd_form_gui->setTableWidth(
"100%");
974 $dnd_form_gui->setTitle($this->lng->txt(
"upload_files_title"));
975 $dnd_form_gui->setTitleIcon(
ilUtil::getImagePath(
'icon_file.gif'), $this->lng->txt(
'obj_file'));
977 $this->ctrl->setParameter($this,
"new_type",
"file");
978 $dnd_form_gui->setFormAction($this->ctrl->getFormAction($this,
"uploadFiles"));
980 return $dnd_form_gui;
991 include_once(
"./Services/JSON/classes/class.ilJsonUtil.php");
1000 $after_creation_callback = (int) $_REQUEST[
"crtcb"];
1001 if ($after_creation_callback) {
1002 $this->after_creation_callback_objects = array();
1003 unset($_REQUEST[
"crtcb"]);
1008 if ($dnd_form_gui->checkInput()) {
1011 $response->error = $this->lng->txt(
"permission_denied");
1014 $inp = $dnd_form_gui->getInput(
"upload_files");
1015 $this->log->debug(
"ilObjFileGUI::uploadFiles " . print_r(
$_POST,
true));
1016 $this->log->debug(
"ilObjFileGUI::uploadFiles " . print_r($_FILES,
true));
1017 $fileresult = $this->handleFileUpload($inp);
1023 $response->error = $this->lng->txt(
'general_upload_error_occured');
1026 $dnd_input = $dnd_form_gui->getItemByPostVar(
"upload_files");
1027 $response->error = $dnd_input->getAlert();
1030 if ($after_creation_callback
1031 &&
sizeof($this->after_creation_callback_objects)
1033 foreach ($this->after_creation_callback_objects as $new_file_obj) {
1036 unset($this->after_creation_callback_objects);
1040 header(
'Vary: Accept');
1041 header(
'Content-type: text/plain');
1043 if ($DIC->upload()->hasBeenProcessed()) {
1044 foreach ($DIC->upload()->getResults() as
$result) {
1047 $this->lng->txt(
'file_upload_info_file_with_critical_extension'),
1066 protected function handleFileUpload($file_upload)
1071 if ($DIC->upload()->hasBeenProcessed() !==
true) {
1072 if (PATH_TO_GHOSTSCRIPT !==
"") {
1077 $DIC->upload()->process();
1081 $item = reset($DIC->upload()->getResults());
1085 $file_upload[
'name'] = $item->getName();
1090 $temp_name = $item->getPath();
1109 $adopt_structure = $keep_structure;
1111 include_once(
"Services/Utilities/classes/class.ilFileUtils.php");
1118 if ($this->id_type != self::WORKSPACE_NODE_ID) {
1130 $containerType =
"WorkspaceFolder";
1139 $containerType =
"Category";
1145 $containerType =
"Folder";
1160 ($adopt_structure && $permission),
1169 $response->error = $this->lng->txt(
'general_upload_error_occured');
1175 if ($this->id_type != self::WORKSPACE_NODE_ID) {
1177 if ($parent_ref_id != $this->parent_id) {
1181 foreach ($objects as
$object) {
1182 $this->after_creation_callback_objects[] =
$object;
1190 if (strlen(trim($title)) == 0) {
1193 $title = $fileObj->checkFileExtension(
$filename, $title);
1195 $fileObj->setTitle($title);
1196 $fileObj->setDescription($description);
1198 $fileObj->setFileType($type);
1199 $fileObj->setFileSize($size);
1200 $this->object_id = $fileObj->create();
1204 if (is_array($this->after_creation_callback_objects)) {
1205 $this->after_creation_callback_objects[] = $fileObj;
1209 $fileObj->createDirectory();
1210 $fileObj->raiseUploadError(
true);
1216 if (empty($fileObj->getTitle())) {
1233 $lg = parent::initHeaderAction($a_sub_type, $a_sub_id);
1234 if (is_object($lg)) {
1235 if ($this->object->hasRating()) {
1240 array(
"ilcommonactiondispatchergui",
"ilratinggui")
initSingleUploadForm()
FORM: Init single upload form.
static _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.
This class represents an option in a radio group.
infoScreenForward()
show information screen
static _getPermanentDownloadLink($ref_id)
Gets the permanent download link for the file.
setValue($a_value)
Set Value.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_node_id=null)
Check permission.
New implementation of ilObjectGUI.
GUI class for the workflow of copying objects.
initCreationForms($a_new_type)
const TITLE_LENGTH
max length of object title
static hasValidExtension($a_filename)
Class ChatMainBarProvider .
getAccessHandler()
Get access handler.
static _getFileExtension($a_file_name)
Gets the file extension of the specified file name.
static _updateStatus($a_obj_id, $a_usr_id, $a_obj=null, $a_percentage=false, $a_force_raise=false)
Update status.
static _recordWriteEvent($obj_id, $usr_id, $action, $parent_obj_id=null)
Records a write event.
initZipUploadForm($a_mode="create")
FORM: Init zip upload form.
getPermanentLinkWidget($a_append=null, $a_center=false)
fillCloneTemplate($a_tpl_varname, $a_type)
static _gotoRepositoryRoot($a_raise_error=false)
Goto repository root.
static _lookupTitle($a_id)
lookup object title
initPropertiesForm($mode="create")
setInfo($a_info)
Set Info.
static _goto($a_target, $a_additional=null)
static _catchupWriteEvents($obj_id, $usr_id, $timestamp=null)
Catches up with all write events which occured before the specified timestamp.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static getMimeType($a_file='', $a_filename='', $a_mime='')
Export User Interface Class.
static checkAccess($a_ref_id, $a_allow_only_read=true)
check access to learning progress
initImportForm($a_new_type)
Init object import form.
static hasPreview($a_obj_id, $a_type="")
Determines whether the object with the specified reference id has a preview.
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)
__construct($a_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)
Constructor.
static _lookupObjId($a_id)
handleAutoRating(ilObject $a_new_obj)
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 isUploadPossible($a_additional_size=null)
uploadFiles()
Called after a file was uploaded.
saveUnzip()
saveUnzip object
static handleAfterSaveCallback(ilObject $a_obj, $a_callback_ref_id)
After creation callback.
getTargetFrame($a_cmd, $a_target_frame="")
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
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, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
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 ...
putObjectInTree(ilObject $a_obj, $a_parent_node_id=null)
Add object to tree at given position.
static ilTempnam($a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
static _lookupFileSize($a_id)
Lookups the file size of the file in bytes.
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...
__construct(Container $dic, ilPlugin $plugin)
GUI class for file objects.
const LP_CONTEXT_REPOSITORY
This class represents a text area property in a property form.
prepareOutput($a_show_subobjects=true)
initMultiUploadForm()
Initializes the upload form for multiple files.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
Class ilCountPDFPagesPreProcessors.
static getLogger($a_component_id)
Get component logger.
static formatSize($size, $a_mode='short', $a_lng=null)
Returns the specified file size value in a human friendly form.
static redirect($a_script)
addHeaderAction()
Add header action menu.
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
Class ilObjUserTrackingGUI.
Class FlySystemFileAccessTest.
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.