ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilObjChatroomAdminAccess Class Reference

Class ilObjChatroomAdminAccess. More...

+ Inheritance diagram for ilObjChatroomAdminAccess:
+ Collaboration diagram for ilObjChatroomAdminAccess:

Public Member Functions

 _getCommands ()
 This method returns an array of all possible commands/permission combinations.
 _checkGoto ($a_target)
 Check whether goto script will succeed.
- Public Member Functions inherited from ilObjectAccess
 _checkAccess ($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id="")
 Checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAccess)
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id)
 check condition
 _preloadData ($a_obj_ids, $a_ref_ids)
 Preload data.

Additional Inherited Members

- Static Public Member Functions inherited from ilObjectAccess
static _isOffline ($a_obj_id)
 Type-specific implementation of general status, has to be overwritten.

Detailed Description

Class ilObjChatroomAdminAccess.

Access class for chatroom objects.

Author
Jan Posselt jposs.nosp@m.elt@.nosp@m.datab.nosp@m.ay.d.nosp@m.e
Version
$Id$

Definition at line 17 of file class.ilObjChatroomAdminAccess.php.

Member Function Documentation

ilObjChatroomAdminAccess::_checkGoto (   $a_target)

Check whether goto script will succeed.

ilAccessHandler $ilAccess

Parameters
string$a_target
Returns
bool
Todo:
: $a_target muss eig. immer ein string sein, da sonst das explode nicht funktioniert, also typehinten (string $a_target) oder?

Reimplemented from ilObjectAccess.

Definition at line 51 of file class.ilObjChatroomAdminAccess.php.

{
global $ilAccess;
$t_arr = explode("_", $a_target);
if ($t_arr[0] != "chtr" || ((int) $t_arr[1]) <= 0)
{
return false;
}
if ($ilAccess->checkAccess("visible", "", $t_arr[1]))
{
return true;
}
return false;
}
ilObjChatroomAdminAccess::_getCommands ( )

This method returns an array of all possible commands/permission combinations.

Example: $commands = array ( array("permission" => "read", "cmd" => "view", "lang_var" => "show"), array("permission" => "write", "cmd" => "edit", "lang_var" => "edit"), );

Returns
string

Reimplemented from ilObjectAccess.

Definition at line 32 of file class.ilObjChatroomAdminAccess.php.

{
$commands = array();
$commands[] = array("permission" => "read", "cmd" => "view", "lang_var" => "enter", "default" => true);
$commands[] = array("permission" => "write", "cmd" => "edit", "lang_var" => "edit");
$commands[] = array("permission" => "write", "cmd" => "versions", "lang_var" => "versions");
return $commands;
}

The documentation for this class was generated from the following file: