ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPortfolioRepositoryGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once('./Modules/Portfolio/classes/class.ilObjPortfolio.php');
5 
17 {
18  protected $user_id; // [int]
19  protected $access_handler; // [ilPortfolioAccessHandler]
20 
21  public function __construct()
22  {
23  global $lng, $ilUser;
24 
25  $lng->loadLanguageModule("prtf");
26  $lng->loadLanguageModule("user");
27 
28  include_once('./Modules/Portfolio/classes/class.ilPortfolioAccessHandler.php');
29  $this->access_handler = new ilPortfolioAccessHandler();
30 
31  $this->user_id = $ilUser->getId();
32  }
33 
34  public function executeCommand()
35  {
36  global $ilCtrl, $lng, $tpl, $ilTabs;
37 
38  $next_class = $ilCtrl->getNextClass($this);
39  $cmd = $ilCtrl->getCmd("show");
40 
41  $tpl->setTitle($lng->txt("portfolio"));
42  $tpl->setTitleIcon(ilUtil::getImagePath("icon_prtf_b.png"),
43  $lng->txt("portfolio"));
44 
45  switch($next_class)
46  {
47  case "ilobjportfoliogui":
48  if($cmd != "preview")
49  {
50  $this->setLocator();
51 
52  $ilTabs->setBack2Target($lng->txt("prtf_tab_portfolios"),
53  $ilCtrl->getLinkTarget($this, "show"));
54  }
55  include_once('./Modules/Portfolio/classes/class.ilObjPortfolioGUI.php');
56  $gui = new ilObjPortfolioGUI($_REQUEST["prt_id"]);
57  $ilCtrl->forwardCommand($gui);
58  break;
59 
60  default:
61  $this->setLocator();
62  $this->setTabs();
63  $this->$cmd();
64  break;
65  }
66 
67  return true;
68  }
69 
70  public function setTabs()
71  {
72  global $ilTabs, $lng, $ilCtrl, $ilHelp;
73 
74  $ilHelp->setScreenIdComponent("prtf");
75 
76  $ilTabs->addTab("mypf", $lng->txt("prtf_tab_portfolios"),
77  $ilCtrl->getLinkTarget($this));
78 
79  $ilTabs->addTab("otpf", $lng->txt("prtf_tab_other_users"),
80  $ilCtrl->getLinkTarget($this, "showotherFilter"));
81 
82  $ilTabs->activateTab("mypf");
83  }
84 
85  protected function setLocator()
86  {
87  global $ilLocator, $lng, $ilCtrl, $tpl;
88 
89  $ilLocator->addItem($lng->txt("portfolio"),
90  $ilCtrl->getLinkTarget($this, "show"));
91 
92  $tpl->setLocator();
93  }
94 
95  protected function checkAccess($a_permission, $a_portfolio_id = null)
96  {
97  if($a_portfolio_id)
98  {
99  return $this->access_handler->checkAccess($a_permission, "", $a_portfolio_id);
100  }
101  // currently only object-based permissions
102  return true;
103  }
104 
105 
106  //
107  // LIST INCL. ACTIONS
108  //
109 
110  protected function show()
111  {
112  global $tpl, $lng, $ilToolbar, $ilCtrl;
113 
114  $ilToolbar->addButton($lng->txt("prtf_add_portfolio"),
115  $ilCtrl->getLinkTargetByClass("ilObjPortfolioGUI", "create"));
116 
117  include_once "Modules/Portfolio/classes/class.ilPortfolioTableGUI.php";
118  $table = new ilPortfolioTableGUI($this, "show", $this->user_id);
119 
120  include_once "Services/DiskQuota/classes/class.ilDiskQuotaHandler.php";
121 
122  $tpl->setContent($table->getHTML().ilDiskQuotaHandler::getStatusLegend());
123  }
124 
125  protected function saveTitles()
126  {
127  global $ilCtrl, $lng;
128 
129  foreach($_POST["title"] as $id => $title)
130  {
131  if(trim($title))
132  {
133  if($this->checkAccess("write", $id))
134  {
135  $portfolio = new ilObjPortfolio($id, false);
136  $portfolio->setTitle($title);
137 
138  if(is_array($_POST["online"]) && in_array($id, $_POST["online"]))
139  {
140  $portfolio->setOnline(true);
141  }
142  else
143  {
144  $portfolio->setOnline(false);
145  }
146 
147  $portfolio->update();
148  }
149  }
150  }
151 
152  ilUtil::sendSuccess($lng->txt("saved_successfully"), true);
153  $ilCtrl->redirect($this, "show");
154  }
155 
156  protected function confirmPortfolioDeletion()
157  {
158  global $ilCtrl, $tpl, $lng;
159 
160  if (!is_array($_POST["prtfs"]) || count($_POST["prtfs"]) == 0)
161  {
162  ilUtil::sendInfo($lng->txt("no_checkbox"), true);
163  $ilCtrl->redirect($this, "show");
164  }
165  else
166  {
167  include_once("./Services/Utilities/classes/class.ilConfirmationGUI.php");
168  $cgui = new ilConfirmationGUI();
169  $cgui->setFormAction($ilCtrl->getFormAction($this));
170  $cgui->setHeaderText($lng->txt("prtf_sure_delete_portfolios"));
171  $cgui->setCancel($lng->txt("cancel"), "show");
172  $cgui->setConfirm($lng->txt("delete"), "deletePortfolios");
173 
174  foreach ($_POST["prtfs"] as $id)
175  {
176  $cgui->addItem("prtfs[]", $id, ilObjPortfolio::_lookupTitle($id));
177  }
178 
179  $tpl->setContent($cgui->getHTML());
180  }
181  }
182 
183  protected function deletePortfolios()
184  {
185  global $lng, $ilCtrl;
186 
187  if (is_array($_POST["prtfs"]))
188  {
189  foreach ($_POST["prtfs"] as $id)
190  {
191  if($this->checkAccess("write", $id))
192  {
193  $portfolio = new ilObjPortfolio($id, false);
194  if ($portfolio->getOwner() == $this->user_id)
195  {
196  $this->access_handler->removePermission($id);
197  $portfolio->delete();
198  }
199  }
200  }
201  }
202  ilUtil::sendSuccess($lng->txt("prtf_portfolio_deleted"), true);
203  $ilCtrl->redirect($this, "show");
204  }
205 
206 
207  //
208  // DEFAULT PORTFOLIO (aka profile)
209  //
210 
211  protected function unsetDefault()
212  {
213  global $ilCtrl, $lng, $ilUser;
214 
215  if($this->checkAccess("write"))
216  {
217  // #12845
218  $ilUser->setPref("public_profile", "n");
219  $ilUser->writePrefs();
220 
221  ilObjPortfolio::setUserDefault($this->user_id);
222  ilUtil::sendSuccess($lng->txt("prtf_unset_default_share_info"), true);
223  }
224  $ilCtrl->redirect($this, "show");
225  }
226 
230  protected function setDefaultConfirmation()
231  {
232  global $ilCtrl, $lng, $tpl;
233 
234  $prtf_id = (int)$_REQUEST["prt_id"];
235 
236  if($prtf_id && $this->checkAccess("write"))
237  {
238  // if already shared, no need to ask again
239  if($this->access_handler->hasRegisteredPermission($prtf_id) ||
240  $this->access_handler->hasGlobalPermission($prtf_id))
241  {
242  return $this->setDefault($prtf_id);
243  }
244 
245  $ilCtrl->setParameter($this, "prt_id", $prtf_id);
246 
247  include_once("./Services/Utilities/classes/class.ilConfirmationGUI.php");
248  $cgui = new ilConfirmationGUI();
249  $cgui->setFormAction($ilCtrl->getFormAction($this));
250  $cgui->setHeaderText($lng->txt("prtf_set_default_publish_confirmation"));
251  $cgui->setCancel($lng->txt("yes"), "setDefaultGlobal");
252  $cgui->setConfirm($lng->txt("no"), "setDefaultRegistered");
253 
254  $tpl->setContent($cgui->getHTML());
255  return;
256  }
257 
258  $ilCtrl->redirect($this, "show");
259  }
260 
261  protected function setDefaultGlobal()
262  {
263  global $ilCtrl;
264 
265  $prtf_id = (int)$_REQUEST["prt_id"];
266  if($prtf_id && $this->checkAccess("write"))
267  {
268  $this->access_handler->addPermission($prtf_id, ilWorkspaceAccessGUI::PERMISSION_ALL);
269  $this->setDefault($prtf_id);
270  }
271  $ilCtrl->redirect($this, "show");
272  }
273 
274  protected function setDefaultRegistered()
275  {
276  global $ilCtrl;
277 
278  $prtf_id = (int)$_REQUEST["prt_id"];
279  if($prtf_id && $this->checkAccess("write"))
280  {
281  $this->access_handler->addPermission($prtf_id, ilWorkspaceAccessGUI::PERMISSION_REGISTERED);
282  $this->setDefault($prtf_id);
283  }
284  $ilCtrl->redirect($this, "show");
285  }
286 
287  protected function setDefault($a_prtf_id)
288  {
289  global $ilCtrl, $lng, $ilUser;
290 
291  if($a_prtf_id && $this->checkAccess("write"))
292  {
293  // #12845
294  if($this->access_handler->hasGlobalPermission($a_prtf_id))
295  {
296  $ilUser->setPref("public_profile", "g");
297  $ilUser->writePrefs();
298  }
299  else if($this->access_handler->hasRegisteredPermission($a_prtf_id))
300  {
301  $ilUser->setPref("public_profile", "y");
302  $ilUser->writePrefs();
303  }
304  else
305  {
306  return;
307  }
308  ilObjPortfolio::setUserDefault($this->user_id, $a_prtf_id);
309  ilUtil::sendSuccess($lng->txt("settings_saved"), true);
310  }
311  $ilCtrl->redirect($this, "show");
312  }
313 
314 
315  //
316  // SHARE
317  //
318 
319  protected function showOtherFilter()
320  {
321  $this->showOther(false);
322  }
323 
324  protected function showOther($a_load_data = true)
325  {
326  global $tpl, $ilTabs;
327 
328  $ilTabs->activateTab("otpf");
329 
330  include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceShareTableGUI.php";
331  $tbl = new ilWorkspaceShareTableGUI($this, "showOther", $this->access_handler, null, $a_load_data);
332  $tpl->setContent($tbl->getHTML());
333  }
334 
335  protected function applyShareFilter()
336  {
337  include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceShareTableGUI.php";
338  $tbl = new ilWorkspaceShareTableGUI($this, "showOther", $this->access_handler);
339  $tbl->resetOffset();
340  $tbl->writeFilterToSession();
341 
342  $this->showOther();
343  }
344 
345  protected function resetShareFilter()
346  {
347  include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceShareTableGUI.php";
348  $tbl = new ilWorkspaceShareTableGUI($this, "showOther", $this->access_handler);
349  $tbl->resetOffset();
350  $tbl->resetFilter();
351 
352  $this->showOther();
353  }
354 }
355 
356 ?>
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
checkAccess($a_permission, $a_portfolio_id=null)
$_POST['username']
Definition: cron.php:12
static _lookupTitle($a_id)
$cmd
Definition: sahs_server.php:35
Portfolio repository gui class.
global $ilCtrl
Definition: ilias.php:18
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Workspace share handler table GUI class.
Portfolio view gui class.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static setUserDefault($a_user_id, $a_portfolio_id=null)
Set the user default portfolio.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
global $ilUser
Definition: imgupload.php:15
global $lng
Definition: privfeed.php:40
Access handler for portfolio.
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
Definition: index.php:7
Confirmation screen class.
setDefaultConfirmation()
Confirm sharing when setting default.