ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjCourseReferenceListGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 include_once "./Modules/Course/classes/class.ilObjCourseListGUI.php";
25 
35 {
36  protected $reference_obj_id = null;
37  protected $reference_ref_id = null;
38  protected $deleted = false;
39 
46  public function __construct()
47  {
49  }
50 
51  public function getIconImageType()
52  {
53  return 'crsr';
54  }
55 
59  public function getTypeIcon()
60  {
62  return ilObject::_getIcon(
64  'small'
65  );
66  }
67 
68 
76  public function getCommandId()
77  {
79  }
80 
85  public function insertTimingsCommand()
86  {
87  return;
88  }
89 
93  public function init()
94  {
95  $this->copy_enabled = true;
96  $this->static_link_enabled = false;
97  $this->delete_enabled = true;
98  $this->cut_enabled = true;
99  $this->subscribe_enabled = true;
100  $this->link_enabled = false;
101  $this->info_screen_enabled = true;
102  $this->type = "crs";
103  $this->gui_class_name = "ilobjcoursegui";
104 
105  include_once('Services/AdvancedMetaData/classes/class.ilAdvancedMDSubstitution.php');
106  $this->substitutions = ilAdvancedMDSubstitution::_getInstanceByObjectType($this->type);
107  if ($this->substitutions->isActive()) {
108  $this->substitutions_enabled = true;
109  }
110  }
111 
112 
113 
117  public function initItem($a_ref_id, $a_obj_id, $type, $a_title = "", $a_description = "")
118  {
119  global $ilBench,$ilAccess,$tree;
120 
121  $this->reference_ref_id = $a_ref_id;
122  $this->reference_obj_id = $a_obj_id;
123 
124 
125  include_once('./Services/ContainerReference/classes/class.ilContainerReference.php');
126  $target_obj_id = ilContainerReference::_lookupTargetId($a_obj_id);
127 
128  $target_ref_ids = ilObject::_getAllReferences($target_obj_id);
129  $target_ref_id = current($target_ref_ids);
130  $target_title = ilContainerReference::_lookupTitle($a_obj_id);
131  $target_description = ilObject::_lookupDescription($target_obj_id);
132 
133  $this->deleted = $tree->isDeleted($target_ref_id);
134 
135  $ilBench->start("ilObjCourseListGUI", "1000_checkAllConditions");
136  $this->conditions_ok = ilConditionHandler::_checkAllConditionsOfTarget($target_ref_id, $target_obj_id);
137  $ilBench->stop("ilObjCourseListGUI", "1000_checkAllConditions");
138 
139 
140  parent::initItem($target_ref_id, $target_obj_id, $type, $target_title, $target_description);
141 
142  // general commands array
143  include_once('./Modules/CourseReference/classes/class.ilObjCourseReferenceAccess.php');
144  $this->commands = ilObjCourseReferenceAccess::_getCommands($this->reference_ref_id);
145 
146  if ($ilAccess->checkAccess('write', '', $this->reference_ref_id) or $this->deleted) {
147  $this->info_screen_enabled = false;
148  } else {
149  $this->info_screen_enabled = true;
150  }
151  }
152 
153  public function getProperties()
154  {
155  global $lng,$ilUser,$tree;
156 
157  $props = parent::getProperties();
158 
159  // offline
160  if ($this->deleted) {
161  $props[] = array("alert" => true, "property" => $lng->txt("status"),
162  "value" => $lng->txt("reference_deleted"));
163  }
164 
165  return $props ? $props : array();
166  }
167 
173  public function checkCommandAccess($a_permission, $a_cmd, $a_ref_id, $a_type, $a_obj_id = "")
174  {
175  // Check edit reference against reference edit permission
176  switch ($a_cmd) {
177  case 'editReference':
178  return parent::checkCommandAccess($a_permission, $a_cmd, $this->getCommandId(), $a_type, $a_obj_id);
179  }
180 
181  switch ($a_permission) {
182  case 'copy':
183  case 'delete':
184  // check against target ref_id
185  return parent::checkCommandAccess($a_permission, $a_cmd, $this->getCommandId(), $a_type, $a_obj_id);
186 
187  default:
188  // check against reference
189  return parent::checkCommandAccess($a_permission, $a_cmd, $a_ref_id, $a_type, $a_obj_id);
190  }
191  }
192 
200  public function getCommandLink($a_cmd)
201  {
202  global $ilCtrl;
203 
204  switch ($a_cmd) {
205  case 'editReference':
206  $ilCtrl->setParameterByClass("ilrepositorygui", "ref_id", $this->getCommandId());
207  $cmd_link = $ilCtrl->getLinkTargetByClass("ilrepositorygui", $a_cmd);
208  $ilCtrl->setParameterByClass("ilrepositorygui", "ref_id", $_GET["ref_id"]);
209  return $cmd_link;
210 
211  default:
212  $ilCtrl->setParameterByClass("ilrepositorygui", "ref_id", $this->ref_id);
213  $cmd_link = $ilCtrl->getLinkTargetByClass("ilrepositorygui", $a_cmd);
214  $ilCtrl->setParameterByClass("ilrepositorygui", "ref_id", $_GET["ref_id"]);
215  return $cmd_link;
216  }
217  }
218 }
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
$_GET["client_id"]
static _getAllReferences($a_id)
get all reference ids of object
static _getInstanceByObjectType($a_type)
Singleton: use this method to get an instance.
static _getCommands()
get commands
static _lookupTitle($a_obj_id)
Overwitten from base class.
initItem($a_ref_id, $a_obj_id, $type, $a_title="", $a_description="")
static _lookupDescription($a_id)
lookup object description
static _lookupObjId($a_id)
Class ilObjCourseListGUI.
static _checkAllConditionsOfTarget($a_target_ref_id, $a_target_id, $a_target_type="", $a_usr_id=0)
checks wether all conditions of a target object are fulfilled
checkCommandAccess($a_permission, $a_cmd, $a_ref_id, $a_type, $a_obj_id="")
__construct(Container $dic, ilPlugin $plugin)
global $ilBench
Definition: ilias.php:21
$ilUser
Definition: imgupload.php:18
static _lookupTargetId($a_obj_id)
lookup target id