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.ilUserActionProviderFactory.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12
class
ilUserActionProviderFactory
13
{
14
protected
static
$providers
= array(
15
array(
16
"component"
=>
"Services/Contact/BuddySystem"
,
17
"class"
=>
"ilContactUserActionProvider"
18
),
19
array(
20
"component"
=>
"Services/User/Actions"
,
21
"class"
=>
"ilMailUserActionProvider"
22
),
23
array(
24
"component"
=>
"Services/User/Actions"
,
25
"class"
=>
"ilUserUserActionProvider"
26
),
27
array(
28
"component"
=>
"Services/User/Actions"
,
29
"class"
=>
"ilWorkspaceUserActionProvider"
30
),
31
array(
32
"component"
=>
"Services/User/Actions"
,
33
"class"
=>
"ilChatUserActionProvider"
34
),
35
array(
36
"component"
=>
"Modules/Group/UserActions"
,
37
"class"
=>
"ilGroupUserActionProvider"
38
)
39
40
);
41
47
public
static
function
getAllProviders
()
48
{
49
$providers
= array();
50
51
foreach
(self::$providers as $p) {
52
$dir = (isset($p[
"dir"
]))
53
? $p[
"dir"
]
54
:
"classes"
;
55
include_once(
"./"
. $p[
"component"
] .
"/"
. $dir .
"/class."
. $p[
"class"
] .
".php"
);
56
$providers
[] =
new
$p[
"class"
]();
57
}
58
59
return
$providers
;
60
}
61
}
ilUserActionProviderFactory
Factory for user action providers.
Definition:
class.ilUserActionProviderFactory.php:12
ilUserActionProviderFactory\$providers
static $providers
Definition:
class.ilUserActionProviderFactory.php:14
ilUserActionProviderFactory\getAllProviders
static getAllProviders()
Get all action providers.
Definition:
class.ilUserActionProviderFactory.php:47
Services
User
Actions
classes
class.ilUserActionProviderFactory.php
Generated on Thu Apr 3 2025 20:01:16 for ILIAS by
1.8.13 (using
Doxyfile
)