ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilObjWorkspaceRootFolderGUI.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 
5 require_once "Modules/WorkspaceFolder/classes/class.ilObjWorkspaceFolderGUI.php";
6 
18 {
19  function getType()
20  {
21  return "wsrt";
22  }
23 
24  function setTabs()
25  {
26  global $lng, $ilHelp;
27 
28  parent::setTabs(false);
29  $ilHelp->setScreenIdComponent("wsrt");
30  }
31 
32  protected function setTitleAndDescription()
33  {
34  global $tpl, $lng;
35 
36  $title = $lng->txt("wsp_personal_workspace");
37 
38  $tpl->setTitle($title);
39  $tpl->setTitleIcon(ilUtil::getImagePath("icon_wsrt_b.png"), $title);
40  $tpl->setDescription($lng->txt("wsp_personal_workspace_description"));
41  }
42 }
43 
44 ?>