ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilGlossaryEditorGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
18 {
22  protected $ctrl;
23 
27  protected $lng;
28 
32  protected $access;
33 
37  protected $nav_history;
38 
42  protected $error;
43 
44  public function __construct()
45  {
46  global $DIC;
47 
48  $this->lng = $DIC->language();
49  $this->access = $DIC->access();
50  $this->nav_history = $DIC["ilNavigationHistory"];
51  $this->error = $DIC["ilErr"];
52  $ilCtrl = $DIC->ctrl();
53  $lng = $DIC->language();
54  $ilAccess = $DIC->access();
55  $ilNavigationHistory = $DIC["ilNavigationHistory"];
56  $ilErr = $DIC["ilErr"];
57 
58  // initialisation stuff
59  $this->ctrl = $ilCtrl;
60  $lng->loadLanguageModule("content");
61 
62  $DIC->globalScreen()->tool()->context()->claim()->repository();
63 
64  // check write permission
65  if (!$ilAccess->checkAccess("write", "", $_GET["ref_id"]) &&
66  !$ilAccess->checkAccess("edit_content", "", $_GET["ref_id"])) {
67  $ilErr->raiseError($lng->txt("permission_denied"), $ilErr->MESSAGE);
68  }
69 
70  $ilNavigationHistory->addItem(
71  $_GET["ref_id"],
72  "ilias.php?baseClass=ilGlossaryEditorGUI&ref_id=" . $_GET["ref_id"],
73  "glo"
74  );
75  }
76 
80  public function executeCommand()
81  {
82  $lng = $this->lng;
83  $ilAccess = $this->access;
84 
85  $cmd = $this->ctrl->getCmd();
86  $next_class = $this->ctrl->getNextClass($this);
87  if ($next_class == "") {
88  $this->ctrl->setCmdClass("ilobjglossarygui");
89  $this->ctrl->setCmd("");
90  }
91 
92  switch ($next_class) {
93  case 'ilobjglossarygui':
94  default:
95  $glossary_gui = new ilObjGlossaryGUI("", $_GET["ref_id"], true, false);
96  $this->ctrl->forwardCommand($glossary_gui);
97  break;
98  }
99  }
100 }
Class ilGlossaryGUI.
Class ilGlossaryEditorGUI.
$_GET["client_id"]
$ilErr
Definition: raiseError.php:18
global $DIC
Definition: goto.php:24
executeCommand()
execute command