24 protected \ilDBInterface
$db;
25 protected \ilLanguage
$lng;
31 $this->db = (
$db) ?: $DIC->database();
32 $this->
lng = $DIC->language();
41 "SELECT * FROM skl_profile_user " .
42 " WHERE profile_id = " .
$ilDB->quote($profile_id,
"integer")
45 while ($rec =
$ilDB->fetchAssoc($set)) {
46 $rec[
"user_id"] = (
int) $rec[
"user_id"];
48 $type = $lng->txt(
"user");
52 "id" => $rec[
"user_id"],
65 array(
"profile_id" => array(
"integer", $profile_id),
66 "user_id" => array(
"integer", $user_id),
77 "DELETE FROM skl_profile_user WHERE " .
78 " profile_id = " .
$ilDB->quote($profile_id,
"integer") .
79 " AND user_id = " .
$ilDB->quote($user_id,
"integer")
88 "DELETE FROM skl_profile_user WHERE " .
89 " user_id = " .
$ilDB->quote($user_id,
"integer")
98 "DELETE FROM skl_profile_user WHERE " .
99 " profile_id = " .
$ilDB->quote($profile_id,
"integer")
109 "SELECT p.id, p.title, p.description, p.image_id FROM skl_profile_user u JOIN skl_profile p " .
110 " ON (u.profile_id = p.id) " .
111 " WHERE user_id = " .
$ilDB->quote($user_id,
"integer") .
112 " ORDER BY p.title ASC" 114 while ($rec =
$ilDB->fetchAssoc($set)) {
115 $rec[
'id'] = (
int) $rec[
'id'];
116 $user_profiles[] = $rec;
119 return $user_profiles;
127 "SELECT count(*) ucnt FROM skl_profile_user " .
128 " WHERE profile_id = " .
$ilDB->quote($profile_id,
"integer")
130 $rec =
$ilDB->fetchAssoc($set);
131 return (
int) $rec[
"ucnt"];
__construct(\ilDBInterface $db=null)
removeUserFromAllProfiles(int $user_id)
addUserToProfile(int $profile_id, int $user_id)
getProfilesOfUser(int $user_id)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAssignedUsers(int $profile_id)
deleteProfileUsers(int $profile_id)
countUsers(int $profile_id)
removeUserFromProfile(int $profile_id, int $user_id)