• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • File List
  • Globals

course/classes/class.ilObjCourseAccess.php

Go to the documentation of this file.
00001 <?php
00002 /*
00003         +-----------------------------------------------------------------------------+
00004         | ILIAS open source                                                           |
00005         +-----------------------------------------------------------------------------+
00006         | Copyright (c) 1998-2001 ILIAS open source, University of Cologne            |
00007         |                                                                             |
00008         | This program is free software; you can redistribute it and/or               |
00009         | modify it under the terms of the GNU General Public License                 |
00010         | as published by the Free Software Foundation; either version 2              |
00011         | of the License, or (at your option) any later version.                      |
00012         |                                                                             |
00013         | This program is distributed in the hope that it will be useful,             |
00014         | but WITHOUT ANY WARRANTY; without even the implied warranty of              |
00015         | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               |
00016         | GNU General Public License for more details.                                |
00017         |                                                                             |
00018         | You should have received a copy of the GNU General Public License           |
00019         | along with this program; if not, write to the Free Software                 |
00020         | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. |
00021         +-----------------------------------------------------------------------------+
00022 */
00023 
00024 include_once("classes/class.ilObjectAccess.php");
00025 
00035 class ilObjCourseAccess extends ilObjectAccess
00036 {
00049         function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id = "")
00050         {
00051                 global $ilUser, $lng, $rbacsystem, $ilAccess, $ilias;
00052 
00053                 if ($a_user_id == "")
00054                 {
00055                         $a_user_id = $ilUser->getId();
00056                 }
00057 
00058                 switch ($a_cmd)
00059                 {
00060                         case "view":
00061                                 include_once 'course/classes/class.ilCourseMembers.php';
00062 
00063                                 if(ilCourseMembers::_isBlocked($a_obj_id,$a_user_id))
00064                                 {
00065                                         $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("crs_status_blocked"));
00066                                         return false;
00067                                 }                                       
00068                                 break;
00069 
00070                         case "info":
00071                                 include_once 'course/classes/class.ilCourseMembers.php';
00072 
00073                                 if(ilCourseMembers::_isMember($a_user_id,$a_obj_id))
00074                                 {
00075                                         $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("info_is_member"));
00076                                 }
00077                                 else
00078                                 {
00079                                         $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("info_is_not_member"));
00080                                 }                       
00081                                 break;
00082 
00083                         case 'join':
00084                                 include_once 'course/classes/class.ilCourseMembers.php';
00085 
00086                                 if(ilCourseMembers::_isMember($a_user_id,$a_obj_id))
00087                                 {
00088                                         return false;
00089                                 }
00090                                 break;
00091 
00092                         case 'details':
00093                                 include_once 'course/classes/class.ilCourseMembers.php';
00094 
00095                                 // No details button if user is member
00096                                 if(ilCourseMembers::_isMember($a_user_id,$a_obj_id))
00097                                 {
00098                                         return false;
00099                                 }
00100                                 // No details button if user has join permission
00101                                 if($rbacsystem->checkAccessOfUser($a_user_id,'join',$a_ref_id))
00102                                 {
00103                                         return false;
00104                                 }
00105                                 break;
00106                 }
00107 
00108                 switch ($a_permission)
00109                 {
00110                         case "visible":
00111                                 include_once 'course/classes/class.ilObjCourse.php';
00112                                 if(!($activated = ilObjCourse::_isActivated($a_obj_id)))
00113                                 {
00114                                         $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
00115                                 }
00116                                 else
00117                                 {
00118                                         $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("online"));
00119                                 }
00120                                 if(!$rbacsystem->checkAccessOfUser($a_user_id,'write',$a_ref_id) and !$activated)
00121                                 {
00122                                         return false;
00123                                 }
00124                                 
00125                                 break;
00126                 }
00127                 return true;
00128         }
00129 
00142         function _getCommands()
00143         {
00144                 $commands = array
00145                 (
00146                         array("permission" => "read", "cmd" => "view", "lang_var" => "view",
00147                                   "default" => true),
00148                         array("permission" => "join", "cmd" => "join", "lang_var" => "join"),
00149                         array("permission" => "write", "cmd" => "edit", "lang_var" => "edit"),
00150                         array('permission' => 'visible', 'cmd' => 'details','lang_var' => 'crs_info')
00151                 );
00152                 
00153                 return $commands;
00154         }
00155 }
00156 
00157 ?>

Generated on Fri Dec 13 2013 10:18:30 for ILIAS Release_3_5_x_branch .rev 46805 by  doxygen 1.7.1