ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilObjChatroomAdminAccess.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
require_once
'Services/Object/classes/class.ilObjectAccess.php'
;
5
13
class
ilObjChatroomAdminAccess
extends
ilObjectAccess
14
{
18
public
static
function
_getCommands
()
19
{
20
$commands = array();
21
$commands[] = array(
"permission"
=>
"read"
,
"cmd"
=>
"view"
,
"lang_var"
=>
"enter"
,
"default"
=>
true
);
22
$commands[] = array(
"permission"
=>
"write"
,
"cmd"
=>
"edit"
,
"lang_var"
=>
"edit"
);
23
$commands[] = array(
"permission"
=>
"write"
,
"cmd"
=>
"versions"
,
"lang_var"
=>
"versions"
);
24
25
return
$commands;
26
}
27
31
public
static
function
_checkGoto
($a_target)
32
{
33
global
$DIC
;
34
35
$t_arr = explode(
'_'
, $a_target);
36
37
if
($t_arr[0] !=
'chtr'
|| ((
int
) $t_arr[1]) <= 0) {
38
return
false
;
39
}
40
41
if
($DIC->rbac()->system()->checkAccess(
'visible'
, $t_arr[1])) {
42
return
true
;
43
}
44
45
return
false
;
46
}
47
}
ilObjectAccess
ilObjChatroomAdminAccess\_getCommands
static _getCommands()
{}
Definition:
class.ilObjChatroomAdminAccess.php:18
ilObjChatroomAdminAccess
Class ilObjChatroomAdminAccess Access class for chatroom objects.
Definition:
class.ilObjChatroomAdminAccess.php:13
ilObjChatroomAdminAccess\_checkGoto
static _checkGoto($a_target)
{}
Definition:
class.ilObjChatroomAdminAccess.php:31
$DIC
$DIC
Definition:
xapitoken.php:46
Modules
Chatroom
classes
class.ilObjChatroomAdminAccess.php
Generated on Thu Apr 3 2025 20:00:47 for ILIAS by
1.8.13 (using
Doxyfile
)