14 include_once
"Services/Table/classes/class.ilTable2GUI.php";
33 public function __construct($a_parent_obj, $a_parent_cmd, $a_node_id, $a_access_handler,
$admin =
false)
37 $this->ctrl = $DIC->ctrl();
38 $this->
user = $DIC->user();
39 $this->obj_definition = $DIC[
"objDefinition"];
42 $this->node_id = $a_node_id;
43 $this->
setId(
"tbl_wfld");
44 $this->access_handler = $a_access_handler;
52 $this->
addColumn($this->lng->txt(
"content"));
56 $this->
setRowTemplate(
"tpl.list_row.html",
"Modules/WorkspaceFolder");
68 include_once
"Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php";
70 $nodes = $tree->
getChilds($this->node_id,
"title");
73 include_once(
"./Services/Object/classes/class.ilObjectListGUIPreloader.php");
75 foreach ($nodes as $node) {
76 $preloader->addItem($node[
"obj_id"], $node[
"type"]);
78 $preloader->preload();
82 $this->shared_objects = $this->access_handler->getObjectsIShare();
92 $class = $objDefinition->getClassName($node[
"type"]);
93 $location = $objDefinition->getLocation($node[
"type"]);
94 $full_class =
"ilObj" . $class .
"ListGUI";
96 include_once(
$location .
"/class." . $full_class .
".php");
100 $item_list_gui->enableDelete(
true);
101 $item_list_gui->enableCut(
true);
102 $item_list_gui->enableSubscribe(
false);
103 $item_list_gui->enableLink(
false);
104 $item_list_gui->enablePath(
false);
105 $item_list_gui->enableLinkedPath(
false);
106 $item_list_gui->enableSearchFragments(
true);
107 $item_list_gui->enableRelevance(
false);
108 $item_list_gui->enableIcon(
true);
109 $item_list_gui->enableTimings(
false);
110 $item_list_gui->enableCheckbox($this->admin);
113 $item_list_gui->enableNotes(
true);
114 $item_list_gui->enableCopy($objDefinition->allowCopy($node[
"type"]));
116 if ($node[
"type"] ==
"file") {
117 $item_list_gui->enableRepositoryTransfer(
true);
120 $item_list_gui->setContainerObject($this->parent_obj);
122 if (in_array($node[
"type"], array(
"file",
"blog"))) {
124 $ilCtrl->setParameterByClass(
"ilworkspaceaccessgui",
"wsp_id", $node[
"wsp_id"]);
125 $share_link =
$ilCtrl->getLinkTargetByClass(array(
"ilObj" . $class .
"GUI",
"ilworkspaceaccessgui"),
"share");
126 $item_list_gui->addCustomCommand($share_link,
"wsp_permissions");
129 if (in_array($node[
"obj_id"], $this->shared_objects)) {
130 $item_list_gui->addCustomProperty($this->lng->txt(
"status"), $this->lng->txt(
"wsp_status_shared"),
true,
true);
134 if ($html = $item_list_gui->getListItemHTML(
140 $this->tpl->setVariable(
"ITEM_LIST_NODE", $html);
getChilds($a_node_id, $a_order="", $a_direction="ASC")
get child nodes of given node public
setEnableNumInfo($a_val)
Set enable num info.
Tree handler for personal workspace.
Preloader for object list GUIs.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
Class ilObjWorkspaceFolderTableGUI.
__construct($a_parent_obj, $a_parent_cmd, $a_node_id, $a_access_handler, $admin=false)
setLimit($a_limit=0, $a_default_limit=0)