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

ilinc/classes/class.ilObjiLincCourseAccess.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 ilObjiLincCourseAccess 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 "info":
00061                                 include_once 'ilinc/classes/class.ilObjiLincCourse.php';
00062 
00063                                 if(ilObjiLincCourse::_isMember($a_user_id,$a_obj_id))
00064                                 {
00065                                         $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("info_is_member"));
00066                                 }
00067                                 else
00068                                 {
00069                                         $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("info_is_not_member"));
00070                                 }                       
00071                                 break;
00072 
00073                         case 'join':
00074                                 include_once 'ilinc/classes/class.ilObjiLincCourse.php';
00075 
00076                                 if(ilObjiLincCourse::_isMember($a_user_id,$a_ref_id))
00077                                 {
00078                                         return false;
00079                                 }               
00080                                 break;
00081                 }
00082 
00083                 switch ($a_permission)
00084                 {
00085                         case "visible":
00086                                 include_once 'ilinc/classes/class.ilObjiLincCourse.php';
00087 
00088                                 if(!($activated = ilObjiLincCourse::_isActivated($a_obj_id)))
00089                                 {
00090                                         $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
00091                                 }
00092                                 else
00093                                 {
00094                                         $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("online"));
00095                                 }
00096                                 
00097                                 if (!$ilias->getSetting("ilinc_active"))
00098                                 {
00099                                         $ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("ilinc_server_not_active"));
00100                                 }
00101                                 
00102                                 if(!$rbacsystem->checkAccessOfUser($a_user_id,'write',$a_ref_id) and !$activated)
00103                                 {
00104                                         return false;
00105                                 }       
00106                                 break;
00107                 }
00108                 
00109                 return true;
00110         }
00111 
00124         function _getCommands()
00125         {
00126                 $commands = array
00127                 (
00128                         array("permission" => "read", "cmd" => "view", "lang_var" => "view_rooms",
00129                                 "default" => true),
00130                         array("permission" => "join", "cmd" => "join", "lang_var" => "join"),
00131                         array("permission" => "write", "cmd" => "edit", "lang_var" => "edit")
00132                 );
00133                 
00134                 return $commands;
00135         }
00136 }
00137 
00138 ?>

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