ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilAwarenessUserProviderFactory.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12
class
ilAwarenessUserProviderFactory
13
{
14
protected
static
$providers
= array(
15
array(
16
"component"
=>
"Services/Contact/BuddySystem"
,
17
"class"
=>
"ilAwarenessUserProviderContactRequests"
18
),
19
array(
20
"component"
=>
"Services/Awareness"
,
21
"class"
=>
"ilAwarenessUserProviderSystemContacts"
22
),
23
array(
24
"component"
=>
"Services/Awareness"
,
25
"class"
=>
"ilAwarenessUserProviderCourseContacts"
26
),
27
array(
28
"component"
=>
"Services/Awareness"
,
29
"class"
=>
"ilAwarenessUserProviderCurrentCourse"
30
),
31
array(
32
"component"
=>
"Services/Contact/BuddySystem"
,
33
"class"
=>
"ilAwarenessUserProviderApprovedContacts"
34
),
35
array(
36
"component"
=>
"Services/Awareness"
,
37
"class"
=>
"ilAwarenessUserProviderMemberships"
38
),
39
array(
40
"component"
=>
"Services/Awareness"
,
41
"class"
=>
"ilAwarenessUserProviderAllUsers"
42
)
43
);
44
45
/*protected static $providers = array(
46
array (
47
"component" => "Services/Awareness",
48
"class" => "ilAwarenessUserProviderCourseContacts"
49
)
50
);*/
51
57
public
static
function
getAllProviders
() : array
58
{
59
$providers
= array();
60
61
foreach
(self::$providers as $p) {
62
$dir = (isset($p[
"dir"
]))
63
? $p[
"dir"
]
64
:
"classes"
;
65
include_once(
"./"
. $p[
"component"
] .
"/"
. $dir .
"/class."
. $p[
"class"
] .
".php"
);
66
$providers
[] =
new
$p[
"class"
]();
67
}
68
69
return
$providers
;
70
}
71
}
ilAwarenessUserProviderFactory\$providers
static $providers
Definition:
class.ilAwarenessUserProviderFactory.php:14
ilAwarenessUserProviderFactory\getAllProviders
static getAllProviders()
Get all awareness providers.
Definition:
class.ilAwarenessUserProviderFactory.php:57
ilAwarenessUserProviderFactory
Awareness providers are.
Definition:
class.ilAwarenessUserProviderFactory.php:12
Services
Awareness
classes
class.ilAwarenessUserProviderFactory.php
Generated on Thu Apr 3 2025 21:01:07 for ILIAS by
1.8.13 (using
Doxyfile
)