ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
ilObjBlogAccess Class Reference

Class ilObjBlogAccess. More...

+ Inheritance diagram for ilObjBlogAccess:
+ Collaboration diagram for ilObjBlogAccess:

Public Member Functions

 _getCommands ()
 get commands More...
 
 _checkGoto ($a_target)
 check whether goto script will succeed More...
 
- 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) More...
 
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id)
 check condition More...
 
 _getCommands ()
 get commands More...
 
 _checkGoto ($a_target)
 check whether goto script will succeed More...
 
 _preloadData ($a_obj_ids, $a_ref_ids)
 Preload data. More...
 

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. More...
 

Detailed Description

Class ilObjBlogAccess.

Author
Jörg Lützenkirchen luetz.nosp@m.enki.nosp@m.rchen.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
Id
class.ilObjRootFolderAccess.php 15678 2008-01-06 20:40:55Z akill

Definition at line 14 of file class.ilObjBlogAccess.php.

Member Function Documentation

◆ _checkGoto()

ilObjBlogAccess::_checkGoto (   $a_target)

check whether goto script will succeed

Reimplemented from ilObjectAccess.

Definition at line 44 of file class.ilObjBlogAccess.php.

45 {
46 global $ilAccess;
47
48 $t_arr = explode("_", $a_target);
49
50 if(substr($a_target, -3) == "wsp")
51 {
52 include_once "Services/PersonalWorkspace/classes/class.ilSharedResourceGUI.php";
53 return ilSharedResourceGUI::hasAccess($t_arr[1]);
54 }
55
56 if ($t_arr[0] != "blog" || ((int) $t_arr[1]) <= 0)
57 {
58 return false;
59 }
60
61 // #12648
62 if ($ilAccess->checkAccess("read", "", $t_arr[1]))
63 {
64 return true;
65 }
66 return false;
67 }
static hasAccess($a_node_id, $a_is_portfolio=false)

References ilSharedResourceGUI\hasAccess().

+ Here is the call graph for this function:

◆ _getCommands()

ilObjBlogAccess::_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 28 of file class.ilObjBlogAccess.php.

29 {
30 $commands = array
31 (
32 array("permission" => "read", "cmd" => "preview", "lang_var" => "show", "default" => true),
33 array("permission" => "write", "cmd" => "render", "lang_var" => "edit"),
34 array("permission" => "contribute", "cmd" => "render", "lang_var" => "edit"),
35 array("permission" => "write", "cmd" => "export", "lang_var" => "export_html")
36 );
37
38 return $commands;
39 }

Referenced by ilObjBlogListGUI\init().

+ Here is the caller graph for this function:

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