ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilObjPollAccess Class Reference

Class ilObjPollAccess. More...

+ Inheritance diagram for ilObjPollAccess:
+ Collaboration diagram for ilObjPollAccess:

Public Member Functions

 _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)
 _getCommands ()
 get commands
 _checkGoto ($a_target)
 check whether goto script will succeed
- Public Member Functions inherited from ilObjectAccess
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id=0)
 check condition
 _preloadData ($a_obj_ids, $a_ref_ids)
 Preload data.

Static Public Member Functions

static _lookupOnline ($a_obj_id)
 get status
static _isActivated ($a_ref_id)
 Is activated?
- 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 ilObjPollAccess.

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.ilObjPollAccess.php.

Member Function Documentation

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

References $ilUser, $lng, and IL_NO_OBJECT_ACCESS.

{
global $ilUser, $lng, $rbacsystem, $ilAccess;
if ($a_user_id == "")
{
$a_user_id = $ilUser->getId();
}
// check "global" online switch
if(!self::_lookupOnline($a_obj_id) &&
!$rbacsystem->checkAccessOfUser($a_user_id,'write',$a_ref_id))
{
$ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
return false;
}
return true;
}
ilObjPollAccess::_checkGoto (   $a_target)

check whether goto script will succeed

Reimplemented from ilObjectAccess.

Definition at line 114 of file class.ilObjPollAccess.php.

{
global $ilAccess;
$t_arr = explode("_", $a_target);
if ($t_arr[0] != "poll" || ((int) $t_arr[1]) <= 0)
{
return false;
}
if ($ilAccess->checkAccess("read", "", $t_arr[1]))
{
return true;
}
return false;
}
ilObjPollAccess::_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 99 of file class.ilObjPollAccess.php.

Referenced by ilObjPollListGUI\init().

{
$commands = array
(
array("permission" => "read", "cmd" => "preview", "lang_var" => "show", "default" => true),
array("permission" => "write", "cmd" => "render", "lang_var" => "edit"),
// array("permission" => "write", "cmd" => "export", "lang_var" => "export")
);
return $commands;
}

+ Here is the caller graph for this function:

static ilObjPollAccess::_isActivated (   $a_ref_id)
static

Is activated?

Parameters
int$a_obj_id
int$a_ref_id
Returns
boolean

Definition at line 68 of file class.ilObjPollAccess.php.

References ilObjectActivation\getItem(), and ilObjectActivation\TIMINGS_ACTIVATION.

Referenced by ilPollBlock\hasAnyContent().

{
include_once './Services/Object/classes/class.ilObjectActivation.php';
$item = ilObjectActivation::getItem($a_ref_id);
switch($item['timing_type'])
{
if(time() < $item['timing_start'] or
time() > $item['timing_end'])
{
return false;
}
// fallthrough
default:
return true;
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static ilObjPollAccess::_lookupOnline (   $a_obj_id)
static

get status

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

References $result, and $row.

Referenced by ilObjPollListGUI\getProperties().

{
global $ilDB;
$result = $ilDB->query("SELECT * FROM il_poll".
" WHERE id = ".$ilDB->quote($a_obj_id, "integer"));
$row = $ilDB->fetchAssoc($result);
return $row["online_status"];
}

+ Here is the caller graph for this function:


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