34 protected \ILIAS\DI\UIServices
$ui;
41 public function __construct($a_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
46 $this->
lng = $DIC->language();
47 $this->
help = $DIC[
"ilHelp"];
48 $this->tpl = $DIC->ui()->mainTemplate();
49 $this->
user = $DIC->user();
50 $this->
tabs = $DIC->tabs();
51 $this->
ctrl = $DIC->ctrl();
52 $this->
ui = $DIC->ui();
67 $this->requested_sortation = $this->std_request->getSortation();
69 $this->
lng->loadLanguageModule(
"cntr");
77 protected function setTabs(
bool $a_show_settings =
true): void
84 $this->
ctrl->setParameter($this,
"wsp_id", $this->node_id);
86 $this->tabs_gui->addTab(
89 $this->
ctrl->getLinkTarget($this,
"")
92 $this->
ctrl->setParameterByClass(
93 "ilObjWorkspaceRootFolderGUI",
98 $this->tabs_gui->addTab(
101 $this->
ctrl->getLinkTargetByClass(
"ilObjWorkspaceRootFolderGUI",
"shareFilter")
104 $this->tabs_gui->addTab(
106 $lng->
txt(
"wsp_tab_ownership"),
107 $this->
ctrl->getLinkTargetByClass(array(
"ilObjWorkspaceRootFolderGUI",
"ilObjectOwnershipManagementGUI"),
"listObjects")
110 if (!$this->
ctrl->getNextClass($this)) {
111 if (stristr($this->
ctrl->getCmd(),
"share")) {
112 $this->tabs_gui->activateTab(
"share");
114 $this->tabs_gui->activateTab(
"wsp");
142 $this->tabs_gui->addSubTab(
145 $this->
ctrl->getLinkTarget($this,
"edit")
159 $this->
ctrl->redirect($this,
"");
165 $this->
ctrl->redirect($this,
"");
170 $next_class = $this->
ctrl->getNextClass($this);
171 $cmd = $this->
ctrl->getCmd();
173 switch ($next_class) {
174 case "ilcommonactiondispatchergui":
176 $this->
ctrl->forwardCommand($gui);
179 case "ilobjectownershipmanagementgui":
181 $this->tabs_gui->activateTab(
"ownership");
183 $this->
ctrl->forwardCommand($gui);
188 if ($this->type !=
"wsrt") {
217 $this->session_repo->clearClipboard();
222 $gui->setCreationUrl($ilCtrl->getLinkTarget($this,
"create"));
228 $this->
ctrl->getLinkTargetByClass(array(
"ilcommonactiondispatchergui",
"iltagginggui"),
"",
"",
true,
false)
239 $this->obj_definition,
241 $this->user_folder_settings
247 $exp->setSelectableTypes(array(
"wsrt",
"wfld"));
248 $exp->setLinkToNodeClass(
true);
249 $exp->setActivateHighlighting(
true);
250 if ($exp->handleCommand()) {
253 $left = $exp->getHTML();
262 $this->tabs_gui->activateTab(
"wsp");
263 $this->tabs_gui->activateSubTab(
"settings");
270 $this->tabs_gui->activateTab(
"wsp");
271 $this->tabs_gui->activateSubTab(
"settings");
274 public function cut(): void
276 $item_ids = $this->std_request->getItemIds();
277 if (count($item_ids) == 0) {
278 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
279 $this->
ctrl->redirect($this);
284 $repo_switch_allowed =
true;
285 foreach ($item_ids as $item_id) {
286 foreach ($this->tree->getSubTree($this->tree->getNodeData($item_id)) as $node) {
288 $repo_switch_allowed =
false;
292 $no_cut[$node[
"wsp_id"]] = $obj->getTitle();
297 if (count($no_cut)) {
298 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_no_perm_cut") .
" " . implode(
',', $no_cut),
true);
299 $this->
ctrl->redirect($this);
303 $this->session_repo->setClipboardSourceIds($item_ids);
304 $this->session_repo->setClipboardCmd(
'cut');
311 $this->session_repo->setClipboardWsp2Repo(
true);
317 $this->session_repo->setClipboardWsp2Repo(
false);
325 $item_ids = $this->std_request->getItemIds();
326 if (count($item_ids) == 0) {
327 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
328 $this->
ctrl->redirect($this);
332 $this->
ctrl->setParameter($this,
"wsp_id", $this->node_id);
334 $repo_switch_allowed =
true;
335 foreach ($item_ids as $item_id) {
336 $node = $this->tree->getNodeData($item_id);
338 $repo_switch_allowed =
false;
340 $current_node = $item_id;
341 $owner = $this->tree->lookupOwner($current_node);
342 if ($owner !=
$ilUser->getId()) {
343 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
344 $this->
ctrl->redirect($this);
349 $this->session_repo->setClipboardSourceIds($item_ids);
350 $this->session_repo->setClipboardCmd(
'copy');
357 $ids = $this->std_request->getItemIds();
358 if (count($ids) != 1) {
359 $this->
ctrl->redirect($this,
"share");
362 $current_node = current($ids);
365 if ($handler->checkAccess(
"read",
"", $current_node)) {
367 $this->session_repo->setClipboardSourceIds([$current_node]);
368 $this->session_repo->setClipboardCmd(
'copy');
369 $this->session_repo->setClipboardShared(
true);
373 $perms = $handler->getPermissions($current_node);
380 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
381 $this->
ctrl->redirect($this,
"share");
386 $this->session_repo->setClipboardWsp2Repo(
true);
392 $this->session_repo->setClipboardWsp2Repo(
false);
401 $ilTabs->clearTargets();
403 if (!$this->session_repo->getClipboardShared()) {
404 $ilTabs->setBackTarget(
405 $this->
lng->txt(
'back'),
406 $this->
ctrl->getLinkTarget($this)
409 $ilTabs->setBackTarget(
410 $this->
lng->txt(
'back'),
411 $this->
ctrl->getLinkTarget($this,
'share')
415 $mode = $this->session_repo->getClipboardCmd();
417 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'msg_' . $mode .
'_clipboard'));
419 $this->tpl->addBlockFile(
422 'tpl.paste_into_multiple_objects.html',
427 if (!$this->session_repo->getClipboardWsp2Repo()) {
430 $exp->setSelectableTypes(array(
"wsrt",
"wfld"));
431 $exp->setSelectMode(
"node",
false);
432 if ($exp->handleCommand()) {
435 $this->tpl->setVariable(
'OBJECT_TREE', $exp->getHTML());
438 if ($repo_switch_allowed) {
439 $switch_cmd = ($mode ==
"cut")
440 ?
"cut_for_repository" 441 :
"copy_to_repository";
442 $this->tpl->setCurrentBlock(
"switch_button");
443 $this->tpl->setVariable(
'CMD_SWITCH', $switch_cmd);
444 $this->tpl->setVariable(
'TXT_SWITCH', $this->
lng->txt(
'wsp_switch_to_repo_tree'));
445 $this->tpl->parseCurrentBlock();
447 foreach ($this->std_request->getItemIds() as
$id) {
448 $this->tpl->setCurrentBlock(
"hidden");
449 $this->tpl->setVariable(
'VALUE', (
string)
$id);
450 $this->tpl->parseCurrentBlock();
459 'paste_' . $mode .
'_repexpand' 461 $exp->setTargetGet(
'ref_id');
463 if ($this->std_request->getPasteExpand($mode) ==
'') {
466 $expanded = $this->std_request->getPasteExpand($mode);
468 $exp->setCheckedItems(array($this->std_request->getNode()));
469 $exp->setExpandTarget($this->
ctrl->getLinkTarget($this,
'showMoveIntoObjectTree'));
470 $exp->setPostVar(
'node');
471 $exp->setExpand($expanded);
473 $this->tpl->setVariable(
'OBJECT_TREE', $exp->getOutput());
475 if (in_array($mode, [
"copy",
"cut"])) {
476 $switch_cmd = ($mode ==
"cut")
477 ?
"cut_for_workspace" 478 :
"copy_to_workspace";
479 $this->tpl->setCurrentBlock(
"switch_button");
480 $this->tpl->setVariable(
'CMD_SWITCH', $switch_cmd);
481 $this->tpl->setVariable(
'TXT_SWITCH', $this->
lng->txt(
'wsp_switch_to_wsp_tree'));
482 $this->tpl->parseCurrentBlock();
484 foreach ($this->std_request->getItemIds() as
$id) {
485 $this->tpl->setCurrentBlock(
"hidden");
486 $this->tpl->setVariable(
'VALUE', (
string)
$id);
487 $this->tpl->parseCurrentBlock();
495 $this->tpl->setVariable(
'FORM_TARGET',
'_top');
496 $this->tpl->setVariable(
498 $this->
ctrl->getFormAction($this,
'performPasteIntoMultipleObjects')
501 $this->tpl->setVariable(
'CMD_SUBMIT',
'performPasteIntoMultipleObjects');
502 $this->tpl->setVariable(
'TXT_SUBMIT', $this->
lng->txt(
'paste'));
509 $mode = $this->session_repo->getClipboardCmd();
510 $source_node_ids = $this->session_repo->getClipboardSourceIds();
511 $target_node_id = $this->std_request->getNode();
513 if (!is_array($source_node_ids) || count($source_node_ids) == 0) {
514 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_at_least_one_object'),
true);
515 $this->
ctrl->redirect($this);
517 if (!$target_node_id) {
518 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_at_least_one_object'),
true);
519 $this->
ctrl->redirect($this,
"showMoveIntoObjectTree");
522 if (!$this->session_repo->getClipboardWsp2Repo()) {
523 $target_obj_id = $this->tree->lookupObjectId($target_node_id);
530 foreach ($source_node_ids as $source_node_id) {
532 $source_obj_id = $this->tree->lookupObjectId($source_node_id);
537 if ($source_node_id == $target_node_id) {
539 $this->
lng->txt(
'msg_obj_exists_in_folder'),
540 $source_object->getTitle(),
541 $target_object->getTitle()
545 if (!in_array($source_object->getType(), array_keys($target_object->getPossibleSubObjects()))) {
547 $this->
lng->txt(
'msg_obj_may_not_contain_objects_of_type'),
548 $target_object->getTitle(),
549 $source_object->getType()
554 $owner = $this->tree->lookupOwner($source_node_id);
556 $fail[] = $this->
lng->txt(
'permission_denied');
559 if (!$this->session_repo->getClipboardWsp2Repo()) {
560 if ($mode ==
"cut" && $this->tree->isGrandChild($source_node_id, $target_node_id)) {
562 $this->
lng->txt(
'msg_paste_object_not_in_itself'),
563 $source_object->getTitle()
568 if ($this->session_repo->getClipboardWsp2Repo() ==
true) {
570 if (!$ilAccess->checkAccess(
"create",
"", $target_node_id, $source_object->getType())) {
572 $this->
lng->txt(
'msg_no_perm_paste_object_in_folder'),
573 $source_object->getTitle(),
574 $target_object->getTitle()
578 if (!$this->
checkPermissionBool(
'create',
'', $source_object->getType(), $target_node_id)) {
580 $this->
lng->txt(
'msg_no_perm_paste_object_in_folder'),
581 $source_object->getTitle(),
582 $target_object->getTitle()
589 $this->tpl->setOnScreenMessage(
'failure', implode(
"<br />", $fail),
true);
590 $this->
ctrl->redirect($this);
593 foreach ($source_node_ids as $source_node_id) {
595 if (
$ilUser->getId() != $owner && $mode ==
"copy") {
598 $node_data = $source_tree->getNodeData($source_node_id);
602 if ($mode ==
"cut") {
603 if (!$this->session_repo->getClipboardWsp2Repo()) {
604 $this->tree->moveTree($source_node_id, $target_node_id);
606 $parent_id = $this->tree->getParentId($source_node_id);
610 $this->tree->deleteReference($source_node_id);
611 $source_node = $this->tree->getNodeData($source_node_id);
612 $this->tree->deleteTree($source_node);
615 $source_object->createReference();
616 $source_object->putInTree($target_node_id);
617 $source_object->setPermissions($target_node_id);
622 elseif ($mode ==
"copy") {
625 $this->wsp_log->debug(
"Copy ID: " . $copy_id .
", Source Node: " . $source_node_id
626 .
", source object: " . $source_object->getId());
627 if (!$this->session_repo->getClipboardWsp2Repo()) {
628 $wizard_options->disableTreeCopy();
630 $wizard_options->saveOwner(
$ilUser->getId());
631 $wizard_options->saveRoot($source_node_id);
632 $wizard_options->read();
634 $new_obj = $source_object->cloneObject($target_node_id, $copy_id);
636 if ($new_obj && !$this->session_repo->getClipboardWsp2Repo()) {
637 $this->wsp_log->debug(
"New Obj ID: " . $new_obj->getId());
638 $new_obj_node_id = $this->tree->insertObject($target_node_id, $new_obj->getId());
639 $this->
getAccessHandler()->setPermissions($target_node_id, $new_obj_node_id);
642 $wizard_options->deleteAll();
647 if (!$this->session_repo->getClipboardWsp2Repo()) {
655 $this->session_repo->clearClipboard();
658 if ($mode ==
'cut') {
659 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_cut_copied'),
true);
661 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_cloned'),
true);
664 $this->
ctrl->setParameter($this,
"wsp_id", $redirect_node);
665 $this->
ctrl->redirect($this);
673 public function share(
bool $a_load_data =
true): void
685 $tbl->writeFilterToSession();
708 $ilTabs->clearTargets();
709 $ilTabs->setBackTarget(
711 $this->
ctrl->getLinkTarget($this,
"share")
726 $this->
ctrl->setParameter($this,
"item_ref_id", $a_node_id);
728 $object_data = $this->
getAccessHandler()->getObjectDataFromNode($a_node_id);
731 $form->setFormAction($ilCtrl->getFormAction($this,
"checkPassword"));
732 $form->setTitle(
$lng->
txt(
"wsp_password_for") .
": " . $object_data[
"title"]);
736 $password->setRequired(
true);
737 $password->setSkipSyntaxCheck(
true);
738 $form->addItem($password);
740 $form->addCommandButton(
"checkPassword",
$lng->
txt(
"submit"));
741 $form->addCommandButton(
"share",
$lng->
txt(
"cancel"));
750 $ids = $this->std_request->getItemIds();
751 if (count($ids) != 1) {
752 $this->
ctrl->redirect($this,
"share");
757 if ($form->checkInput()) {
759 $input = md5($form->getInput(
"password"));
760 if ($input == $password) {
764 $this->
ctrl->setParameter($this,
"item_ref_id",
$node_id);
765 $this->
ctrl->redirect($this,
"copyShared");
767 $item = $form->getItemByPostVar(
"password");
768 $item->setAlert(
$lng->
txt(
"wsp_invalid_password"));
769 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"form_input_not_valid"));
773 $form->setValuesByPost();
777 public static function _goto(
string $a_target): void
780 $ctrl = $DIC->ctrl();
781 $id = explode(
"_", $a_target);
783 "ilsharedresourceGUI",
795 $tbl->writeFilterToSession();
806 $item_ids = $this->std_request->getItemIds();
808 if (count($item_ids) == 0) {
809 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"no_checkbox"),
true);
810 $this->
ctrl->redirect($this,
"");
818 $cgui->setHeaderText(
$lng->
txt(
"info_delete_sure") .
"<br/>" .
819 $lng->
txt(
"info_delete_warning_no_trash"));
821 $cgui->setFormAction($this->
ctrl->getFormAction($this));
822 $cgui->setCancel(
$lng->
txt(
"cancel"),
"cancelDeletion");
823 $cgui->setConfirm(
$lng->
txt(
"confirm"),
"confirmedDelete");
826 $children = $this->tree->getSubTree($this->tree->getNodeData($node_id));
827 foreach ($children as $child) {
828 $node_id = $child[
"wsp_id"];
829 $obj_id = $this->tree->lookupObjectId($node_id);
835 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"msg_no_perm_delete") .
" " . $title,
true);
836 $this->
ctrl->redirect($this);
854 $this->session_repo->clearClipboard();
855 parent::cancelDelete();
869 $main_tpl = $DIC->ui()->mainTemplate();
873 if (!$this->session_repo->isClipboardEmpty()) {
875 $main_tpl->setPageFormAction($this->
ctrl->getFormAction($this));
878 $this->
ctrl->setParameter($this,
"type",
"");
879 $this->
ctrl->setParameter($this,
"item_ref_id",
"");
882 $this->
lng->txt(
'paste_clipboard_items'),
887 $this->
lng->txt(
'clear_clipboard'),
891 $main_tpl->addAdminPanelToolbar(
$toolbar,
true,
false);
894 $main_tpl->setPageFormAction($this->
ctrl->getFormAction($this));
897 $this->
ctrl->setParameter($this,
"type",
"");
898 $this->
ctrl->setParameter($this,
"item_ref_id",
"");
900 if ($this->
object->gotItems($this->node_id)) {
906 $this->
lng->txt(
'delete_selected_items'),
910 $this->
lng->txt(
'move_selected_items'),
914 $this->
lng->txt(
'copy_selected_items'),
918 $this->
lng->txt(
'download_selected_items'),
924 $main_tpl->addAdminPanelToolbar(
926 $this->
object->gotItems($this->node_id) && $this->session_repo->isClipboardEmpty(),
927 ($this->
object->gotItems($this->node_id) && $this->session_repo->isClipboardEmpty())
931 if ($this->
object->gotItems($this->node_id)) {
932 $main_tpl->setPageFormAction($this->
ctrl->getFormAction($this));
944 $this->
ctrl->redirect($this,
"");
951 $initiated_by_folder_action =
false;
953 $ids = $this->std_request->getItemIds();
955 if (count($ids) == 0) {
956 $this->
ctrl->redirect($this,
"");
962 if ($download_job->run()) {
963 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_bt_download_started'),
true);
965 $this->
ctrl->redirect($this);
972 $title = $this->
lng->txt(
'personal_resources');
static get(string $a_var)
__construct($a_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)
setAdministrationPanel(bool $active)
redirectByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
static getLogger(string $a_component_id)
Get component logger.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Class ilObjWorkspaceFolderGUI.
initCreationForms($a_new_type)
New implementation of ilObjectGUI.
passwordForm(int $a_node_id, ?ilPropertyFormGUI $form=null)
const PERMISSION_ALL_PASSWORD
static getSharedNodePassword(int $a_node_id)
isActiveAdministrationPanel()
static prepareJsLinks(string $redraw_url, string $notes_url, string $tags_url, ilGlobalTemplateInterface $tpl=null)
Insert js/ajax links into template.
setTabs(bool $a_show_settings=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
activateSubTab(string $a_id)
setTypeWhiteList(array $a_val)
Set type white list.
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setParameterByClass(string $a_class, string $a_parameter, $a_value)
prepareOutput(bool $show_sub_objects=true)
loadLanguageModule(string $a_module)
Load language module.
ilPasteIntoMultipleItemsExplorer Explorer
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Background task for downloads.
static _goto(string $a_target)
initPasswordForm(int $a_node_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setSortation()
Set sortation.
static _lookupObjId(int $ref_id)
static getASCIIFilename(string $a_filename)
Workspace share handler table GUI class.
addSubTab(string $a_id, string $a_text, string $a_link, string $a_frame="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
setContent(string $a_html)
Sets content for standard template.
setScreenIdComponent(string $a_comp)
static keepSharedSessionPassword(int $a_node_id, string $a_password)
Explorer for selecting a personal workspace item.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
ilGlobalTemplateInterface $tpl
showAdministrationPanel()
static _allocateCopyId()
Allocate a copy for further entries.
ilWorkspaceFolderUserSettings $user_folder_settings
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
static getClassByType(string $obj_type)
performPasteIntoMultipleObjects()
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
showMoveIntoObjectTree(bool $repo_switch_allowed=false)
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
WorkspaceSessionRepository $session_repo
__construct(Container $dic, ilPlugin $plugin)
share(bool $a_load_data=true)
setDescription(string $a_descr)
Sets description below title in standard template.
initCreateForm(string $new_type)
listSharedResourcesOfOtherUser()
Workspace clipboard session repository.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
StandardGUIRequest $std_request
static _getInstance(int $a_copy_id)
addContentSubTabs(bool $a_show_settings)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupType(int $id, bool $reference=false)
addHeaderAction()
Add header action menu.
static set(string $a_var, $a_val)
Set a value.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
setLeftNavContent(string $a_content)
Sets content of left navigation column.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...