ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilObjGroupAccess.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2008 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("./classes/class.ilObjectAccess.php");
25 
35 {
48  function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id = "")
49  {
50  global $ilUser, $lng, $rbacsystem, $ilAccess;
51 
52  if ($a_user_id == "")
53  {
54  $a_user_id = $ilUser->getId();
55  }
56 
57  switch ($a_cmd)
58  {
59  case "info":
60 
61  include_once './Modules/Group/classes/class.ilGroupParticipants.php';
62  if(ilGroupParticipants::_isParticipant($a_ref_id,$a_user_id))
63  {
64  $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("info_is_member"));
65  }
66  else
67  {
68  $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("info_is_not_member"));
69  }
70  break;
71 
72  case "join":
73 
74  include_once './Modules/Group/classes/class.ilGroupParticipants.php';
75  if(ilGroupParticipants::_isParticipant($a_ref_id,$a_user_id))
76  {
77  return false;
78  }
79  break;
80  }
81 
82  switch ($a_permission)
83  {
84 
85  }
86  return true;
87  }
88 
101  function _getCommands()
102  {
103  $commands = array();
104  $commands[] = array("permission" => "read", "cmd" => "view", "lang_var" => "show", "default" => true);
105  // why here? it just needs info_screen_enabled = true in ilObjGroupListGUI (alex, 30.7.2008)
106  // this is not consistent, with all other objects...
107  // $commands[] = array("permission" => "visible", "cmd" => "infoScreen", "lang_var" => "info_short", "enable_anonymous" => "false");
108  $commands[] = array("permission" => "join", "cmd" => "join", "lang_var" => "join");
109  // BEGIN WebDAV: Mount Webfolder.
110  require_once 'Services/WebDAV/classes/class.ilDAVServer.php';
112  {
113  $commands[] = array("permission" => "read", "cmd" => "mount_webfolder", "lang_var" => "mount_webfolder", "enable_anonymous" => "false");
114  }
115  // END WebDAV: Mount Webfolder.
116  $commands[] = array("permission" => "write", "cmd" => "edit", "lang_var" => "edit");
117 
118  return $commands;
119  }
120 
124  function _checkGoto($a_target)
125  {
126  global $ilAccess;
127 
128  $t_arr = explode("_", $a_target);
129 
130  if ($t_arr[0] != "grp" || ((int) $t_arr[1]) <= 0)
131  {
132  return false;
133  }
134 
135  if ($ilAccess->checkAccess("read", "", $t_arr[1]) ||
136  $ilAccess->checkAccess("visible", "", $t_arr[1]))
137  {
138  return true;
139  }
140  return false;
141  }
142 
143 }
144 ?>