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

Class ilFileBasedLMAccess. More...

+ Inheritance diagram for ilObjFileBasedLMAccess:
+ Collaboration diagram for ilObjFileBasedLMAccess:

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
 _lookupOnline ($a_id)
 check wether learning module is online
 _determineStartUrl ($a_id)
 check wether learning module is online
 _checkGoto ($a_target)
 check whether goto script will succeed
 _lookupDiskUsage ($a_id)
 Returns the number of bytes used on the harddisk by the learning module with the specified object id.
- Public Member Functions inherited from ilObjectAccess
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id=0)
 check condition

Detailed Description

Class ilFileBasedLMAccess.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
Id:
class.ilObjFileBasedLMAccess.php 22536 2009-12-11 09:12:52Z akill

Definition at line 35 of file class.ilObjFileBasedLMAccess.php.

Member Function Documentation

ilObjFileBasedLMAccess::_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 49 of file class.ilObjFileBasedLMAccess.php.

References $lng, _determineStartUrl(), _lookupOnline(), and IL_NO_OBJECT_ACCESS.

{
global $ilUser, $lng, $rbacsystem, $ilAccess;
if ($a_user_id == "")
{
$a_user_id = $ilUser->getId();
}
switch ($a_permission)
{
case "visible":
(!$rbacsystem->checkAccessOfUser($a_user_id,'write', $a_ref_id)))
{
$ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
return false;
}
break;
case "read":
&& !$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:

ilObjFileBasedLMAccess::_checkGoto (   $a_target)

check whether goto script will succeed

Reimplemented from ilObjectAccess.

Definition at line 160 of file class.ilObjFileBasedLMAccess.php.

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

check wether learning module is online

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

References $dir, $ilDB, $q, and ilUtil\getWebspaceDir().

Referenced by _checkAccess(), ilObjFileBasedLMListGUI\getProperties(), ilObjFileBasedLMGUI\properties(), and ilObjFileBasedLMGUI\showLearningModule().

{
global $ilDB;
$q = "SELECT * FROM file_based_lm WHERE id = ".$ilDB->quote($a_id, "integer");
$set = $ilDB->query($q);
$rec = $ilDB->fetchAssoc($set);
$start_file = $rec["startfile"];
$dir = ilUtil::getWebspaceDir()."/lm_data/lm_".$a_id;
if (($start_file != "") &&
(@is_file($dir."/".$start_file)))
{
return "./".$dir."/".$start_file;
}
else if (@is_file($dir."/index.html"))
{
return "./".$dir."/index.html";
}
else if (@is_file($dir."/index.htm"))
{
return "./".$dir."/index.htm";
}
return "";
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilObjFileBasedLMAccess::_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 97 of file class.ilObjFileBasedLMAccess.php.

Referenced by ilObjFileBasedLMListGUI\init().

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

+ Here is the caller graph for this function:

ilObjFileBasedLMAccess::_lookupDiskUsage (   $a_id)

Returns the number of bytes used on the harddisk by the learning module with the specified object id.

Parameters
intobject id of a file object.

Definition at line 183 of file class.ilObjFileBasedLMAccess.php.

References ilUtil\dirsize(), and ilUtil\getWebspaceDir().

Referenced by ilObjFileBasedLM\getDiskUsage().

{
$lm_data_dir = ilUtil::getWebspaceDir('filesystem')."/lm_data";
$lm_dir = $lm_data_dir.DIRECTORY_SEPARATOR."lm_".$a_id;
return file_exists($lm_dir) ? ilUtil::dirsize($lm_dir) : 0;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilObjFileBasedLMAccess::_lookupOnline (   $a_id)

check wether learning module is online

Definition at line 116 of file class.ilObjFileBasedLMAccess.php.

References $ilDB, $q, and ilUtil\yn2tf().

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

{
global $ilDB;
$q = "SELECT * FROM file_based_lm WHERE id = ".$ilDB->quote($a_id, "integer");
$set = $ilDB->query($q);
$rec = $ilDB->fetchAssoc($set);
return ilUtil::yn2tf($rec["is_online"]);
}

+ 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: