ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
ilObjExerciseAccess Class Reference

Class ilObjExerciseAccess. More...

+ Inheritance diagram for ilObjExerciseAccess:
+ Collaboration diagram for ilObjExerciseAccess:

Public Member Functions

 _getCommands ()
 get commands More...
 
 _lookupRemainingWorkingTimeString ($a_obj_id)
 
 _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=0)
 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 ilObjExerciseAccess.

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

Member Function Documentation

◆ _checkGoto()

ilObjExerciseAccess::_checkGoto (   $a_target)

check whether goto script will succeed

Definition at line 64 of file class.ilObjExerciseAccess.php.

65  {
66  global $ilAccess;
67 
68  $t_arr = explode("_", $a_target);
69 
70  if ($t_arr[0] != "exc" || ((int) $t_arr[1]) <= 0)
71  {
72  return false;
73  }
74 
75  if ($ilAccess->checkAccess("read", "", $t_arr[1]))
76  {
77  return true;
78  }
79  return false;
80  }

◆ _getCommands()

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

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

Referenced by ilObjExerciseListGUI\init().

31  {
32  $commands = array
33  (
34  array("permission" => "read", "cmd" => "showOverview", "lang_var" => "show",
35  "default" => true),
36  array("permission" => "write", "cmd" => "listAssignments", "lang_var" => "edit_assignments"),
37  array("permission" => "write", "cmd" => "edit", "lang_var" => "settings")
38  );
39 
40  return $commands;
41  }
+ Here is the caller graph for this function:

◆ _lookupRemainingWorkingTimeString()

ilObjExerciseAccess::_lookupRemainingWorkingTimeString (   $a_obj_id)

Definition at line 43 of file class.ilObjExerciseAccess.php.

References $lng, ilUtil\int2array(), and ilUtil\timearray2string().

Referenced by ilObjExerciseListGUI\getProperties().

44  {
45  global $ilDB, $lng;
46 
47  $q = "SELECT MIN(time_stamp) mtime, COUNT(*) cnt FROM exc_assignment WHERE exc_id = ".
48  $ilDB->quote($a_obj_id, "integer").
49  " AND time_stamp > ".$ilDB->quote(time(), "integer");
50  $set = $ilDB->query($q);
51  $rec = $ilDB->fetchAssoc($set);
52 
53  if ($rec["mtime"] > 0)
54  {
55  $time_diff = ilUtil::int2array($rec["mtime"] - time(), null);
56  $rec["mtime"] = ilUtil::timearray2string($time_diff);
57  }
58  return $rec;
59  }
static int2array($seconds, $periods=null)
Return an array of date segments.
static timearray2string($duration)
Return a string of time periods.
global $lng
Definition: privfeed.php:40
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

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