ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjSAHSLearningModuleAccess.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
28 {
33  public static function getConditionOperators(): array
34  {
35  return array(
38  );
39  }
40 
41  public static function checkCondition(
42  int $a_trigger_obj_id,
43  string $a_operator,
44  string $a_value,
45  int $a_usr_id
46  ): bool {
47  switch ($a_operator) {
48 
50  return ilLPStatus::_lookupStatus($a_trigger_obj_id, $a_usr_id) == ilLPStatus::LP_STATUS_FAILED_NUM;
51  break;
52 
54  default:
55  return ilLPStatus::_hasUserCompleted($a_trigger_obj_id, $a_usr_id);
56 
57  }
58  }
59 
71  public static function _getCommands(int $a_obj_id = null): array
72  {
73  $commands = array(
74  array("permission" => "read", "cmd" => "view", "lang_var" => "show", "default" => true),
75  // array("permission" => "write", "cmd" => "editContent", "lang_var" => "edit_content"),
76  array("permission" => "write", "cmd" => "edit", "lang_var" => "settings")
77  );
78  return $commands;
79  }
80 
84  public static function _checkGoto(string $target): bool
85  {
86  global $DIC;
87  $ilAccess = $DIC->access();
88 
89  $t_arr = explode("_", $target);
90 
91  if ($t_arr[0] !== "sahs" || ((int) $t_arr[1]) <= 0) {
92  return false;
93  }
94 
95  if ($ilAccess->checkAccess("visible", "", (int) $t_arr[1]) || $ilAccess->checkAccess("read", "", (int) $t_arr[1])) {
96  return true;
97  }
98  return false;
99  }
100 
101 
107  public static function _lookupDiskUsage(int $a_id): int
108  {
109  $lm_data_dir = ilFileUtils::getWebspaceDir('filesystem') . "/lm_data";
110  $lm_dir = $lm_data_dir . DIRECTORY_SEPARATOR . "lm_" . $a_id;
111 
112  return file_exists($lm_dir) ? ilFileUtils::dirsize($lm_dir) : 0;
113  }
114 }
static getWebspaceDir(string $mode="filesystem")
get webspace directory
static _hasUserCompleted(int $a_obj_id, int $a_user_id)
Lookup user object completion.
Interface for condition handling.
global $DIC
Definition: feed.php:28
static dirsize(string $directory)
get size of a directory or a file.
static _lookupStatus(int $a_obj_id, int $a_user_id, bool $a_create=true)
Lookup status.
static getConditionOperators()
Get possible conditions operaditors.
static checkCondition(int $a_trigger_obj_id, string $a_operator, string $a_value, int $a_usr_id)
check condition for a specific user and object
static _lookupDiskUsage(int $a_id)
Returns the number of bytes used on the harddisk by the learning module with the specified object id...
static _checkGoto(string $target)
check whether goto script will succeed
static _getCommands(int $a_obj_id=null)
get commands this method returns an array of all possible commands/permission combinations example: $...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const LP_STATUS_FAILED_NUM