35 $this->
user = $DIC->user();
36 $this->
lng = $DIC->language();
37 $this->rbacsystem = $DIC->rbac()->system();
38 $this->
access = $DIC->access();
41 public function _checkAccess(
string $cmd,
string $permission,
int $ref_id,
int $obj_id, ?
int $user_id = null): bool
48 if (is_null($user_id)) {
52 switch ($permission) {
54 if (!self::_lookupOnline($obj_id)
62 if (!self::_lookupOnline($obj_id) &&
77 array(
"permission" =>
"read",
"cmd" =>
"view",
"lang_var" =>
"show",
79 array(
"permission" =>
"write",
"cmd" =>
"edit",
"lang_var" =>
"edit_content"),
80 array(
"permission" =>
"edit_content",
"cmd" =>
"edit",
"lang_var" =>
"edit_content"),
81 array(
"permission" =>
"write",
"cmd" =>
"properties",
"lang_var" =>
"settings")
95 $ilDB = $DIC->database();
97 $q =
"SELECT * FROM glossary WHERE id = " .
98 $ilDB->quote($a_id,
"integer");
110 $ilDB = $DIC->database();
112 $q =
"SELECT id, is_online FROM glossary WHERE " .
113 $ilDB->in(
"id", $a_ids,
false,
"integer");
128 $ilAccess = $DIC->access();
130 $t_arr = explode(
"_", $target);
132 if (($t_arr[0] !=
"glo" && $t_arr[0] !=
"git") || ((
int) $t_arr[1]) <= 0) {
136 if ($t_arr[0] ==
"glo") {
137 if ($ilAccess->checkAccess(
"read",
"", $t_arr[1]) ||
138 $ilAccess->checkAccess(
"visible",
"", $t_arr[1])) {
143 if ($t_arr[0] ==
"git") {
144 if ((
int) ($t_arr[2] ?? 0) > 0) {
145 $ref_ids = array($t_arr[2]);
152 foreach ($ref_ids as
$ref_id) {
154 if ($ilAccess->checkAccess(
"read",
"", $ref_id)) {
const IL_NO_OBJECT_ACCESS
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _getAllReferences(int $id)
get all reference ids for object ID
static _lookupOnlineStatus(array $a_ids)
checkAccessOfUser(int $a_user_id, string $a_operations, int $a_ref_id, string $a_type="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
_checkAccess(string $cmd, string $permission, int $ref_id, int $obj_id, ?int $user_id=null)
static yn2tf(string $a_yn)
static _checkGoto(string $target)
static _lookupOnline(int $a_id)
static _lookGlossaryID(int $term_id)
get glossary id form term id