ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilWorkspaceContentGUI Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Collaboration diagram for ilWorkspaceContentGUI:

Public Member Functions

 __construct (object $object_gui, int $node_id, bool $admin, ilWorkspaceAccessHandler $access_handler, \ILIAS\DI\UIServices $ui, ilLanguage $lng, ilObjUser $user, ilObjectDefinition $obj_definition, ilCtrl $ctrl, ilWorkspaceFolderUserSettings $user_folder_settings)
 
 render ()
 

Protected Member Functions

 getItems ()
 
 getItemHTML (array $node)
 

Protected Attributes

int $current_node
 
bool $admin
 
ilWorkspaceAccessHandler $access_handler
 
ILIAS DI UIServices $ui
 
ilLanguage $lng
 
ilObjUser $user
 
ilObjectDefinition $obj_definition
 
ilCtrl $ctrl
 
ilWorkspaceFolderSorting $folder_sorting = null
 

Private Attributes

object $object_gui
 
ilWorkspaceFolderUserSettings $user_folder_settings
 
array $shared_objects
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Workspace content renderer

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 24 of file class.ilWorkspaceContentGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilWorkspaceContentGUI::__construct ( object  $object_gui,
int  $node_id,
bool  $admin,
ilWorkspaceAccessHandler  $access_handler,
\ILIAS\DI\UIServices  $ui,
ilLanguage  $lng,
ilObjUser  $user,
ilObjectDefinition  $obj_definition,
ilCtrl  $ctrl,
ilWorkspaceFolderUserSettings  $user_folder_settings 
)

Definition at line 39 of file class.ilWorkspaceContentGUI.php.

References $access_handler, $admin, $ctrl, $lng, $obj_definition, $object_gui, $ui, $user, $user_folder_settings, ILIAS\Repository\ctrl(), ILIAS\Repository\lng(), ILIAS\Repository\ui(), and ILIAS\Repository\user().

50  {
51  $this->current_node = $node_id;
52  $this->admin = $admin;
53  $this->access_handler = $access_handler;
54  $this->object_gui = $object_gui;
55  $this->ui = $ui;
56  $this->lng = $lng;
57  $this->user = $user;
58  $this->obj_definition = $obj_definition;
59  $this->ctrl = $ctrl;
60  $this->user_folder_settings = $user_folder_settings;
61 
62  $this->folder_sorting = new ilWorkspaceFolderSorting();
63  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilWorkspaceAccessHandler $access_handler
ilWorkspaceFolderUserSettings $user_folder_settings
+ Here is the call graph for this function:

Member Function Documentation

◆ getItemHTML()

ilWorkspaceContentGUI::getItemHTML ( array  $node)
protected

Definition at line 137 of file class.ilWorkspaceContentGUI.php.

References $ctrl, $obj_definition, ilObjectListGUI\CONTEXT_WORKSPACE, ilObjectListGUI\DETAILS_ALL, and ILIAS\Repository\lng().

Referenced by render().

137  : string
138  {
139  $objDefinition = $this->obj_definition;
140  $ilCtrl = $this->ctrl;
141  //bug ilCertificateVerificationClassMap in 6 beta was cmiv instead of cmxv
142  if ($node["type"] == "cmiv") {
143  return "";
144  }
145 
146  $class = $objDefinition->getClassName($node["type"]);
147  $full_class = "ilObj" . $class . "ListGUI";
148 
149  $item_list_gui = new $full_class(ilObjectListGUI::CONTEXT_WORKSPACE);
150 
151  $item_list_gui->setDetailsLevel(ilObjectListGUI::DETAILS_ALL);
152  $item_list_gui->enableDelete(true);
153  $item_list_gui->enableCut(true);
154  $item_list_gui->enableSubscribe(false);
155  $item_list_gui->enableLink(false);
156  $item_list_gui->enablePath(false);
157  $item_list_gui->enableLinkedPath(false);
158  $item_list_gui->enableSearchFragments(true);
159  $item_list_gui->enableIcon(true);
160  $item_list_gui->enableTimings(false);
161  $item_list_gui->enableCheckbox($this->admin);
162 
163  $item_list_gui->enableNotes(true);
164  $item_list_gui->enableCopy($objDefinition->allowCopy($node["type"]));
165 
166  if ($node["type"] == "file") {
167  $item_list_gui->enableRepositoryTransfer(true);
168  }
169 
170  $item_list_gui->setContainerObject($this->object_gui);
171 
172  if (in_array($node["type"], array("file", "blog"))) {
173  // add "share" link
174  $ilCtrl->setParameterByClass("ilworkspaceaccessgui", "wsp_id", $node["wsp_id"]);
175  $share_link = $ilCtrl->getLinkTargetByClass(array("ilObj" . $class . "GUI", "ilworkspaceaccessgui"), "share");
176  $item_list_gui->addCustomCommand($share_link, "wsp_permissions");
177 
178  // show "shared" status
179  if (in_array($node["obj_id"], $this->shared_objects)) {
180  $item_list_gui->addCustomProperty($this->lng->txt("status"), $this->lng->txt("wsp_status_shared"), true, true);
181  }
182  }
183 
184  $html = $item_list_gui->getListItemHTML(
185  $node["wsp_id"],
186  $node["obj_id"],
187  (string) $node["title"],
188  (string) $node["description"]
189  );
190 
191  return $html;
192  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getItems()

ilWorkspaceContentGUI::getItems ( )
protected

Definition at line 114 of file class.ilWorkspaceContentGUI.php.

References $user, ilObjectListGUI\CONTEXT_WORKSPACE, ilTree\getChilds(), and ilObject\getId().

Referenced by render().

114  : array
115  {
116  $user = $this->user;
117 
118  $tree = new ilWorkspaceTree($user->getId());
119  $nodes = $tree->getChilds($this->current_node, "title");
120 
121  if (sizeof($nodes)) {
123  foreach ($nodes as $node) {
124  $preloader->addItem($node["obj_id"], $node["type"]);
125  }
126  $preloader->preload();
127  unset($preloader);
128  }
129 
130  $this->shared_objects = $this->access_handler->getObjectsIShare();
131 
132  $nodes = $this->folder_sorting->sortNodes($nodes, $this->user_folder_settings->getEffectiveSortation($this->object_gui->getRefId()));
133 
134  return $nodes;
135  }
getChilds(int $a_node_id, string $a_order="", string $a_direction="ASC")
get child nodes of given node
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Preloader for object list GUIs.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ render()

ilWorkspaceContentGUI::render ( )

Definition at line 65 of file class.ilWorkspaceContentGUI.php.

References ILIAS\Repository\ctrl(), getItemHTML(), getItems(), ilTree\getParentId(), ILIAS\Repository\lng(), ILIAS\Repository\ui(), and ILIAS\Repository\user().

65  : string
66  {
67  $html = "";
68  $first = true;
69  foreach ($this->getItems() as $i) {
70  if ($first) {
71  $first = false;
72  } else {
73  $html .= $this->ui->renderer()->render($this->ui->factory()->divider()->horizontal());
74  }
75  $html .= $this->getItemHTML($i);
76  }
77 
78  if ($this->admin) {
79  $tpl = new ilTemplate("tpl.admin_container.html", true, true, "components/ILIAS/WorkspaceFolder");
80  $tpl->setVariable("ITEMS", $html);
81  $tpl->setVariable("TXT_SELECT_ALL", $this->lng->txt("select_all"));
82  $html = $tpl->get();
83  }
84 
85 
86  // output sortation
87  $tree = new ilWorkspaceTree($this->user->getId());
88  $parent_id = $tree->getParentId($this->object_gui->getRefId());
89  $parent_effective = ($parent_id > 0)
90  ? $this->user_folder_settings->getEffectiveSortation($parent_id)
91  : 0;
92  $selected = $this->user_folder_settings->getSortation($this->object_gui->getObject()->getId());
93  $sort_options = $this->folder_sorting->getOptionsByType($this->object_gui->getObject()->getType(), $selected, $parent_effective);
94  $sortation = $this->ui->factory()->viewControl()->sortation($sort_options, $selected)
95  ->withTargetURL($this->ctrl->getLinkTarget($this->object_gui, "setSortation"), 'sortation');
96 
97  if ($first) {
98  return "";
99  }
100 
101  $leg = $this->ui->factory()->legacy()->content($html);
102 
103  $panel = $this->ui->factory()->panel()->standard($this->lng->txt("content"), [$leg]);
104 
105  if (method_exists($panel, "withViewControls")) {
106  $panel = $panel->withViewControls(array($sortation));
107  }
108 
109 
110 
111  return $this->ui->renderer()->render($panel);
112  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParentId(int $a_node_id)
get parent id of given node
+ Here is the call graph for this function:

Field Documentation

◆ $access_handler

ilWorkspaceAccessHandler ilWorkspaceContentGUI::$access_handler
protected

Definition at line 31 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct().

◆ $admin

bool ilWorkspaceContentGUI::$admin
protected

Definition at line 30 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct().

◆ $ctrl

ilCtrl ilWorkspaceContentGUI::$ctrl
protected

Definition at line 36 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct(), and getItemHTML().

◆ $current_node

int ilWorkspaceContentGUI::$current_node
protected

Definition at line 29 of file class.ilWorkspaceContentGUI.php.

◆ $folder_sorting

ilWorkspaceFolderSorting ilWorkspaceContentGUI::$folder_sorting = null
protected

Definition at line 37 of file class.ilWorkspaceContentGUI.php.

◆ $lng

ilLanguage ilWorkspaceContentGUI::$lng
protected

Definition at line 33 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct().

◆ $obj_definition

ilObjectDefinition ilWorkspaceContentGUI::$obj_definition
protected

Definition at line 35 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct(), and getItemHTML().

◆ $object_gui

object ilWorkspaceContentGUI::$object_gui
private

Definition at line 26 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct().

◆ $shared_objects

array ilWorkspaceContentGUI::$shared_objects
private

Definition at line 28 of file class.ilWorkspaceContentGUI.php.

◆ $ui

ILIAS DI UIServices ilWorkspaceContentGUI::$ui
protected

Definition at line 32 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct().

◆ $user

ilObjUser ilWorkspaceContentGUI::$user
protected

Definition at line 34 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct(), and getItems().

◆ $user_folder_settings

ilWorkspaceFolderUserSettings ilWorkspaceContentGUI::$user_folder_settings
private

Definition at line 27 of file class.ilWorkspaceContentGUI.php.

Referenced by __construct().


The documentation for this class was generated from the following file: