33 $this->
user = $DIC->user();
34 $this->
lng = $DIC->language();
35 $this->rbacsystem = $DIC->rbac()->system();
36 $this->
access = $DIC->access();
43 array(
"permission" =>
"read",
"cmd" =>
"view",
"lang_var" =>
"show",
45 array(
"permission" =>
"write",
"cmd" =>
"editSettings",
"lang_var" =>
"settings")
51 public function _checkAccess(
string $cmd,
string $permission,
int $ref_id,
int $obj_id, ?
int $user_id = null): bool
58 if (is_null($user_id)) {
65 if (!self::_lookupOnline($obj_id)
74 if (!self::_lookupOnline($obj_id)) {
82 switch ($permission) {
85 if (!self::_lookupOnline($obj_id) &&
92 if (!$info->isGranted()) {
106 $ilAccess = $DIC->access();
108 $t_arr = explode(
"_", $target);
110 if ($t_arr[0] !==
"wiki" || (((
int) $t_arr[1]) <= 0) && $t_arr[1] !==
"wpage") {
114 if ($t_arr[1] ===
"wpage") {
115 $wpg_id = (
int) $t_arr[2];
117 if ((
int) ($t_arr[3] ?? 0) > 0) {
118 $refs = array((
int) $t_arr[3]);
122 foreach ($refs as $r) {
123 if ($ilAccess->checkAccess(
"read",
"", (
int) $r) ||
124 $ilAccess->checkAccess(
"visible",
"", (
int) $r)) {
128 } elseif ($ilAccess->checkAccess(
"read",
"", (
int) $t_arr[1]) ||
129 $ilAccess->checkAccess(
"visible",
"", (
int) $t_arr[1])) {
139 $ilDB = $DIC->database();
141 $q =
"SELECT * FROM il_wiki_data WHERE id = " .
142 $ilDB->quote($a_id,
"integer");
143 $wk_set =
$ilDB->query($q);
144 $wk_rec =
$ilDB->fetchAssoc($wk_set);
146 return (
bool) $wk_rec[
"is_online"];
157 $ilDB = $DIC->database();
159 $q =
"SELECT id, is_online FROM il_wiki_data WHERE " .
160 $ilDB->in(
"id", $a_ids,
false,
"integer");
164 $status[$r[
"id"]] = (bool) $r[
"is_online"];
177 $ilDB = $DIC->database();
179 $q =
"SELECT * FROM il_wiki_data WHERE id = " .
180 $ilDB->quote($a_id,
"integer");
181 $wk_set =
$ilDB->query($q);
182 $wk_rec =
$ilDB->fetchAssoc($wk_set);
184 return (
bool) $wk_rec[
"public_files"];
const IL_NO_OBJECT_ACCESS
static _checkGoto(string $target)
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 _lookupPublicFiles(int $a_id)
Check wether files should be public.
static lookupWikiId(int $a_page_id)
checkAccessOfUser(int $a_user_id, string $a_operations, int $a_ref_id, string $a_type="")
_checkAccess(string $cmd, string $permission, int $ref_id, int $obj_id, ?int $user_id=null)
static _lookupOnlineStatus(array $a_ids)
see legacyOnlineFilter in ilContainer
static _lookupOnline(int $a_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...