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.ilRegistrationEmailRoleAssignments.php
Go to the documentation of this file.
1
<?php
2
/*
3
+-----------------------------------------------------------------------------+
4
| ILIAS open source |
5
+-----------------------------------------------------------------------------+
6
| Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7
| |
8
| This program is free software; you can redistribute it and/or |
9
| modify it under the terms of the GNU General Public License |
10
| as published by the Free Software Foundation; either version 2 |
11
| of the License, or (at your option) any later version. |
12
| |
13
| This program is distributed in the hope that it will be useful, |
14
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
15
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16
| GNU General Public License for more details. |
17
| |
18
| You should have received a copy of the GNU General Public License |
19
| along with this program; if not, write to the Free Software |
20
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21
+-----------------------------------------------------------------------------+
22
*/
23
33
define(
'IL_REG_MISSING_DOMAIN'
, 1);
34
define(
'IL_REG_MISSING_ROLE'
, 2);
35
36
class
ilRegistrationRoleAssignments
37
{
38
public
$assignments
= array();
39
public
$default_role
= 0;
40
41
public
function
__construct
()
42
{
43
global
$DIC
;
44
45
$ilDB
= $DIC[
'ilDB'
];
46
47
$this->db =
$ilDB
;
48
$this->
__read
();
49
}
50
51
public
function
getRoleByEmail
(
string
$a_email)
52
{
53
global
$DIC
;
54
55
$ilObjDataCache = $DIC[
'ilObjDataCache'
];
56
57
foreach
($this->assignments as $assignment) {
58
if
(!$assignment[
'domain'
] or !$assignment[
'role'
]) {
59
continue
;
60
}
61
if
(stristr($a_email, $assignment[
'domain'
])) {
62
// check if role exists
63
if
(!$ilObjDataCache->lookupType($assignment[
'role'
])) {
64
continue
;
65
}
66
return
$assignment[
'role'
];
67
}
68
}
69
// return default
70
return
$this->
getDefaultRole
();
71
}
72
73
public
function
getDomainsByRole
(
int
$role_id)
74
{
75
$ilDB
= $this->db;
76
77
$query
=
$ilDB
->query(
"SELECT * FROM reg_er_assignments "
.
78
"WHERE role = "
.
$ilDB
->quote($role_id,
'integer'
));
79
80
81
while
($row =
$ilDB
->fetchAssoc(
$query
)) {
82
$res
[] = $row[
"domain"
];
83
}
84
85
return
$res
;
86
}
87
88
public
function
getAssignments
()
89
{
90
return
$this->assignments ? $this->assignments : array();
91
}
92
93
public
function
setDomain
(
int
$id,
string
$a_domain)
94
{
95
$this->assignments[$id][
'domain'
] = $a_domain;
96
}
97
public
function
setRole
(
int
$id,
string
$a_role)
98
{
99
$this->assignments[$id][
'role'
] = $a_role;
100
}
101
102
public
function
getDefaultRole
()
103
{
104
return
$this->default_role
;
105
}
106
public
function
setDefaultRole
($a_role_id)
107
{
108
$this->default_role = $a_role_id;
109
}
110
111
public
function
deleteAll
()
112
{
113
$ilDB
= $this->db;
114
115
$query
=
"DELETE FROM reg_er_assignments "
;
116
$ilDB
->manipulate(
$query
);
117
$this->
__read
();
118
return
true
;
119
}
120
121
public
function
save
()
122
{
123
global
$DIC
;
124
125
$ilias = $DIC[
'ilias'
];
126
$ilDB
= $this->db;
127
128
// Save default role
129
$ilias->setSetting(
'reg_default_role'
, $this->
getDefaultRole
());
130
131
foreach
($this->assignments as $assignment) {
132
if
(empty($assignment[
'id'
])) {
133
$next_id =
$ilDB
->nextId(
'reg_er_assignments'
);
134
$query
=
"INSERT INTO reg_er_assignments (assignment_id,domain,role) "
.
135
"VALUES( "
.
136
$ilDB
->quote($next_id,
'integer'
) .
', '
.
137
$ilDB
->quote($assignment[
'domain'
],
'text'
) .
", "
.
138
$ilDB
->quote($assignment[
'role'
],
'integer'
) .
139
")"
;
140
$res
=
$ilDB
->manipulate(
$query
);
141
}
142
}
143
$this->
__read
();
144
return
true
;
145
}
146
147
148
// Private
149
public
function
__read
()
150
{
151
global
$DIC
;
152
153
$ilias = $DIC[
'ilias'
];
154
$ilDB
= $this->db;
155
156
$query
=
"SELECT * FROM reg_er_assignments "
;
157
$res
= $this->db->query(
$query
);
158
159
$this->assignments = array();
160
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
161
$this->assignments[$row->assignment_id][
'id'
] = $row->assignment_id;
162
$this->assignments[$row->assignment_id][
'role'
] = $row->role;
163
$this->assignments[$row->assignment_id][
'domain'
] = $row->domain;
164
}
165
166
$this->default_role = $ilias->getSetting(
'reg_default_role'
);
167
168
return
true
;
169
}
170
}
ilRegistrationRoleAssignments\save
save()
Definition:
class.ilRegistrationEmailRoleAssignments.php:121
ilRegistrationRoleAssignments\$default_role
$default_role
Definition:
class.ilRegistrationEmailRoleAssignments.php:39
ilRegistrationRoleAssignments\setRole
setRole(int $id, string $a_role)
Definition:
class.ilRegistrationEmailRoleAssignments.php:97
ilRegistrationRoleAssignments
Definition:
class.ilRegistrationEmailRoleAssignments.php:36
ilRegistrationRoleAssignments\setDefaultRole
setDefaultRole($a_role_id)
Definition:
class.ilRegistrationEmailRoleAssignments.php:106
ilRegistrationRoleAssignments\getDomainsByRole
getDomainsByRole(int $role_id)
Definition:
class.ilRegistrationEmailRoleAssignments.php:73
ilRegistrationRoleAssignments\getRoleByEmail
getRoleByEmail(string $a_email)
Definition:
class.ilRegistrationEmailRoleAssignments.php:51
ilRegistrationRoleAssignments\setDomain
setDomain(int $id, string $a_domain)
Definition:
class.ilRegistrationEmailRoleAssignments.php:93
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ilRegistrationRoleAssignments\deleteAll
deleteAll()
Definition:
class.ilRegistrationEmailRoleAssignments.php:111
ilRegistrationRoleAssignments\$assignments
$assignments
Definition:
class.ilRegistrationEmailRoleAssignments.php:38
$DIC
global $DIC
Definition:
goto.php:24
$query
$query
Definition:
proxy_ylocal.php:13
ilRegistrationRoleAssignments\getDefaultRole
getDefaultRole()
Definition:
class.ilRegistrationEmailRoleAssignments.php:102
$ilDB
global $ilDB
Definition:
storeScorm2004.php:16
ilRegistrationRoleAssignments\__construct
__construct()
Definition:
class.ilRegistrationEmailRoleAssignments.php:41
ilRegistrationRoleAssignments\__read
__read()
Definition:
class.ilRegistrationEmailRoleAssignments.php:149
ilDBConstants\FETCHMODE_OBJECT
const FETCHMODE_OBJECT
Definition:
class.ilDBConstants.php:11
ilRegistrationRoleAssignments\getAssignments
getAssignments()
Definition:
class.ilRegistrationEmailRoleAssignments.php:88
Services
Registration
classes
class.ilRegistrationEmailRoleAssignments.php
Generated on Thu Apr 3 2025 21:01:27 for ILIAS by
1.8.13 (using
Doxyfile
)