ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPersonalWorkspaceGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
20 {
21  protected $tree; // [ilTree]
22  protected $node_id; // [int]
23 
27  public function __construct()
28  {
29  global $ilCtrl, $lng, $ilHelp;
30 
31  $lng->loadLanguageModule("wsp");
32 
33  $this->initTree();
34 
35  $ilCtrl->saveParameter($this, "wsp_id");
36 
37  $this->node_id = $_REQUEST["wsp_id"];
38  if(!$this->node_id)
39  {
40  $this->node_id = $this->tree->getRootId();
41  }
42  }
43 
47  public function executeCommand()
48  {
49  global $ilCtrl, $lng, $objDefinition, $tpl;
50 
51  $ilCtrl->setReturn($this, "render");
52  $cmd = $ilCtrl->getCmd();
53 
54  // new type
55  if($_REQUEST["new_type"])
56  {
57  $class_name = $objDefinition->getClassName($_REQUEST["new_type"]);
58 
59  // Only set the fixed cmdClass if the next class is different to
60  // the GUI class of the new object.
61  // An example:
62  // ilObjLinkResourceGUI tries to forward to ilLinkInputGUI (adding an internal link
63  // when creating a link resource)
64  // Without this fix, the cmdClass ilObjectCopyGUI would never be reached
65  if (strtolower($ilCtrl->getNextClass($this)) != strtolower("ilObj".$class_name."GUI"))
66  {
67  $ilCtrl->setCmdClass("ilObj".$class_name."GUI");
68  }
69  }
70 
71  // root node
72  $next_class = $ilCtrl->getNextClass();
73  if(!$next_class)
74  {
75  $node = $this->tree->getNodeData($this->node_id);
76  $next_class = "ilObj".$objDefinition->getClassName($node["type"])."GUI";
77  $ilCtrl->setCmdClass($next_class);
78  }
79 
80  // if we do this here the object can still change the breadcrumb
81  $this->renderLocator();
82 
83  // current node
84  $class_path = $ilCtrl->lookupClassPath($next_class);
85  include_once($class_path);
86  $class_name = $ilCtrl->getClassForClasspath($class_path);
87  if($_REQUEST["new_type"])
88  {
89  $gui = new $class_name(null, ilObject2GUI::WORKSPACE_NODE_ID, $this->node_id);
90  $gui->setCreationMode();
91  }
92  else
93  {
94  $gui = new $class_name($this->node_id, ilObject2GUI::WORKSPACE_NODE_ID, false);
95  }
96  $ilCtrl->forwardCommand($gui);
97 
98  $this->renderBack();
99  $tpl->setLocator();
100  }
101 
105  protected function initTree()
106  {
107  global $ilUser;
108 
109  $user_id = $ilUser->getId();
110 
111  include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php";
112  $this->tree = new ilWorkspaceTree($user_id);
113  if(!$this->tree->getRootId())
114  {
115  $this->tree->createTreeForUser($user_id);
116  }
117  }
118 
119  protected function renderBack()
120  {
121  global $lng, $ilTabs, $ilCtrl, $ilUser;
122 
123  $root = $this->tree->getNodeData($this->node_id);
124  if($root["type"] != "wfld" && $root["type"] != "wsrt")
125  {
126  // do not override existing back targets, e.g. public user profile gui
127  if(!$ilTabs->back_target)
128  {
129  $owner = $this->tree->lookupOwner($this->node_id);
130  // workspace
131  if($owner == $ilUser->getId())
132  {
133  $parent = $this->tree->getParentNodeData($this->node_id);
134  if($parent["wsp_id"])
135  {
136  if($parent["type"] == "wsrt")
137  {
138  $class = "ilobjworkspacerootfoldergui";
139  }
140  else
141  {
142  $class = "ilobjworkspacefoldergui";
143  }
144  $ilCtrl->setParameterByClass($class, "wsp_id", $parent["wsp_id"]);
145  $ilTabs->setBackTarget($lng->txt("back"),
146  $ilCtrl->getLinkTargetByClass($class, ""));
147  }
148  }
149  // "shared by others"
150  else
151  {
152  $ilCtrl->setParameterByClass("ilobjworkspacerootfoldergui", "wsp_id", "");
153  $ilCtrl->setParameterByClass("ilobjworkspacerootfoldergui", "user", $owner);
154  $ilTabs->setBackTarget($lng->txt("back"),
155  $ilCtrl->getLinkTargetByClass("ilobjworkspacerootfoldergui", "share"));
156  }
157  }
158  }
159  }
160 
164  protected function renderLocator()
165  {
166  global $lng, $ilCtrl, $ilLocator, $tpl, $objDefinition;
167 
168  $ilLocator->clearItems();
169 
170  // we have no path if shared item
171  $path = $this->tree->getPathFull($this->node_id);
172  if($path)
173  {
174  foreach($path as $node)
175  {
176  $obj_class = "ilObj".$objDefinition->getClassName($node["type"])."GUI";
177 
178  $ilCtrl->setParameter($this, "wsp_id", $node["wsp_id"]);
179 
180  switch($node["type"])
181  {
182  case "wsrt":
183  $ilLocator->addItem($lng->txt("wsp_personal_workspace"), $ilCtrl->getLinkTargetByClass($obj_class, "render"));
184  break;
185 
186  case "blog":
187  case $objDefinition->isContainer($node["type"]):
188  $ilLocator->addItem($node["title"], $ilCtrl->getLinkTargetByClass($obj_class, "render"));
189  break;
190 
191  default:
192  $ilLocator->addItem($node["title"], $ilCtrl->getLinkTargetByClass($obj_class, "edit"));
193  break;
194  }
195  }
196  }
197 
198  $ilCtrl->setParameter($this, "wsp_id", $this->node_id);
199  }
200 }
201 
202 ?>
GUI class for personal workspace.
renderLocator()
Build locator for current node.
$cmd
Definition: sahs_server.php:35
Tree handler for personal workspace.
global $ilCtrl
Definition: ilias.php:18
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
global $ilUser
Definition: imgupload.php:15
global $lng
Definition: privfeed.php:40
$path
Definition: index.php:22
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
Definition: index.php:7