ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilObjWikiAccess Class Reference

Class ilObjWikiAccess. More...

+ Inheritance diagram for ilObjWikiAccess:
+ Collaboration diagram for ilObjWikiAccess:

Public Member Functions

 _getCommands ()
 get commands
 _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)
 _checkGoto ($a_target)
 check whether goto script will succeed
 _lookupOnline ($a_id)
 Check wether wiki cast is online.
 _lookupPublicFiles ($a_id)
 Check wether files should be public.
- Public Member Functions inherited from ilObjectAccess
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id=0)
 check condition

Detailed Description

Class ilObjWikiAccess.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 15 of file class.ilObjWikiAccess.php.

Member Function Documentation

ilObjWikiAccess::_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)

Parameters
string$a_cmdcommand (not permission!)
string$a_permissionpermission
int$a_ref_idreference id
int$a_obj_idobject id
int$a_user_iduser id (if not provided, current user is taken)
Returns
boolean true, if everything is ok

Reimplemented from ilObjectAccess.

Definition at line 54 of file class.ilObjWikiAccess.php.

References $lng, _lookupOnline(), and IL_NO_OBJECT_ACCESS.

{
global $ilUser, $lng, $rbacsystem, $ilAccess;
if ($a_user_id == "")
{
$a_user_id = $ilUser->getId();
}
switch ($a_cmd)
{
case "view":
&& !$rbacsystem->checkAccessOfUser($a_user_id,'write',$a_ref_id))
{
$ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
return false;
}
break;
// for permission query feature
case "infoScreen":
{
$ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
}
else
{
$ilAccess->addInfoItem(IL_STATUS_MESSAGE, $lng->txt("online"));
}
break;
}
switch ($a_permission)
{
case "read":
case "visible":
if (!ilObjWikiAccess::_lookupOnline($a_obj_id) &&
(!$rbacsystem->checkAccessOfUser($a_user_id, 'write', $a_ref_id)))
{
$ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
return false;
}
break;
}
return true;
}

+ Here is the call graph for this function:

ilObjWikiAccess::_checkGoto (   $a_target)

check whether goto script will succeed

Reimplemented from ilObjectAccess.

Definition at line 107 of file class.ilObjWikiAccess.php.

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

get commands

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"), );

Reimplemented from ilObjectAccess.

Definition at line 30 of file class.ilObjWikiAccess.php.

Referenced by ilObjWikiListGUI\init().

{
$commands = array
(
array("permission" => "read", "cmd" => "view", "lang_var" => "show",
"default" => true),
array("permission" => "write", "cmd" => "editSettings", "lang_var" => "edit")
);
return $commands;
}

+ Here is the caller graph for this function:

ilObjWikiAccess::_lookupOnline (   $a_id)

Check wether wiki cast is online.

Parameters
int$a_idwiki id

Definition at line 130 of file class.ilObjWikiAccess.php.

References $ilDB, and $q.

Referenced by _checkAccess(), and ilObjWikiListGUI\getProperties().

{
global $ilDB;
$q = "SELECT * FROM il_wiki_data WHERE id = ".
$ilDB->quote($a_id, "integer");
$wk_set = $ilDB->query($q);
$wk_rec = $ilDB->fetchAssoc($wk_set);
return $wk_rec["is_online"];
}

+ Here is the caller graph for this function:

ilObjWikiAccess::_lookupPublicFiles (   $a_id)

Check wether files should be public.

Parameters
int$a_idwiki id

Definition at line 147 of file class.ilObjWikiAccess.php.

References $ilDB, and $q.

{
global $ilDB;
$q = "SELECT * FROM il_wiki_data WHERE id = ".
$ilDB->quote($a_id, "integer");
$wk_set = $ilDB->query($q);
$wk_rec = $ilDB->fetchAssoc($wk_set);
return $wk_rec["public_files"];
}

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