24 protected \ilDBInterface
$db;
25 protected \ilLanguage
$lng;
32 $this->db = (
$db) ?: $DIC->database();
33 $this->
lng = $DIC->language();
34 $this->review = $DIC->rbac()->review();
42 "DELETE FROM skl_profile_role WHERE " .
43 " profile_id = " .
$ilDB->quote($profile_id,
"integer")
54 "SELECT * FROM skl_profile_role " .
55 " WHERE profile_id = " .
$ilDB->quote($profile_id,
"integer")
58 while ($rec =
$ilDB->fetchAssoc($set)) {
59 $rec[
"role_id"] = (
int) $rec[
"role_id"];
61 $type = $lng->txt(
"role");
75 "id" => $rec[
"role_id"],
76 "object_title" => $obj_title,
77 "object_type" => $obj_type,
78 "object_id" => $obj_id
91 array(
"profile_id" => array(
"integer", $profile_id),
92 "role_id" => array(
"integer", $role_id),
103 "DELETE FROM skl_profile_role WHERE " .
104 " profile_id = " .
$ilDB->quote($profile_id,
"integer") .
105 " AND role_id = " .
$ilDB->quote($role_id,
"integer")
114 "DELETE FROM skl_profile_role WHERE " .
115 " role_id = " .
$ilDB->quote($role_id,
"integer")
125 "SELECT p.id, p.title, p.description, p.image_id FROM skl_profile_role r JOIN skl_profile p " .
126 " ON (r.profile_id = p.id) " .
127 " WHERE r.role_id = " .
$ilDB->quote($role_id,
"integer") .
128 " ORDER BY p.title ASC" 130 while ($rec =
$ilDB->fetchAssoc($set)) {
131 $rec[
'id'] = (
int) $rec[
'id'];
143 "SELECT p.id, p.title, p.description, p.image_id FROM skl_profile_role r JOIN skl_profile p " .
144 " ON (r.profile_id = p.id) " .
145 " WHERE r.role_id = " .
$ilDB->quote($role_id,
"integer") .
146 " AND p.ref_id = 0" .
147 " ORDER BY p.title ASC" 149 while ($rec =
$ilDB->fetchAssoc($set)) {
150 $rec[
'id'] = (
int) $rec[
'id'];
163 "SELECT p.id, p.title, p.description, p.image_id FROM skl_profile_role r JOIN skl_profile p " .
164 " ON (r.profile_id = p.id) " .
165 " WHERE r.role_id = " .
$ilDB->quote($role_id,
"integer") .
166 " AND p.ref_id = " .
$ilDB->quote($ref_id,
"integer") .
167 " ORDER BY p.title ASC" 169 while ($rec =
$ilDB->fetchAssoc($set)) {
170 $rec[
'id'] = (
int) $rec[
'id'];
181 "SELECT count(*) rcnt FROM skl_profile_role " .
182 " WHERE profile_id = " .
$ilDB->quote($profile_id,
"integer")
184 $rec =
$ilDB->fetchAssoc($set);
185 return (
int) $rec[
"rcnt"];
getAssignedRoles(int $profile_id)
addRoleToProfile(int $profile_id, int $role_id)
getLocalProfilesOfRole(int $role_id, int $ref_id)
getAllProfilesOfRole(int $role_id)
static _lookupTitle(int $obj_id)
deleteProfileRoles(int $profile_id)
static _getTranslation(string $a_role_title)
static _lookupObjectId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeRoleFromAllProfiles(int $role_id)
__construct(\ilDBInterface $db=null)
static _lookupType(int $id, bool $reference=false)
removeRoleFromProfile(int $profile_id, int $role_id)
getGlobalProfilesOfRole(int $role_id)
countRoles(int $profile_id)