42 bool $a_user_image =
false,
43 bool $a_profile_link =
false,
44 string $a_profile_back_link =
'',
45 bool $a_force_first_lastname =
false,
46 bool $a_omit_login =
false,
47 bool $a_sortable =
true,
48 bool $a_return_data_array =
false,
49 $a_ctrl_path =
'ilpublicuserprofilegui' 53 $ilCtrl = $DIC[
'ilCtrl'];
56 if (!is_array($a_ctrl_path)) {
57 $a_ctrl_path = [$a_ctrl_path];
60 if (!($return_as_array = is_array($a_user_id))) {
61 $a_user_id = [$a_user_id];
70 b.value public_profile, 76 (a.usr_id = b.usr_id AND 80 (a.usr_id = c.usr_id AND 82 WHERE ' .
$ilDB->in(
'a.usr_id', $a_user_id,
false,
'integer');
84 $userrow =
$ilDB->queryF($sql, [
'text',
'text'], [
'public_profile',
'public_title']);
89 while ($row =
$ilDB->fetchObject($userrow)) {
92 'id' => (
int) $row->usr_id,
99 $has_public_profile = in_array($row->public_profile, [
'y',
'g']);
100 if ($a_force_first_lastname || $has_public_profile) {
102 if ($row->public_title ==
'y' && $row->title) {
103 $title = $row->title .
' ';
105 $d[
'title'] = $title;
107 $pres = $row->lastname;
108 if (strlen($row->firstname)) {
109 $pres .= (
', ' . $row->firstname .
' ');
113 if (strlen($row->firstname)) {
114 $pres .= $row->firstname .
' ';
116 $pres .= ($row->lastname .
' ');
118 $d[
'firstname'] = $row->firstname;
119 $d[
'lastname'] = $row->lastname;
121 $d[
'login'] = $row->login;
122 $d[
'public_profile'] = $has_public_profile;
125 if (!$a_omit_login) {
126 $pres .=
'[' . $row->login .
']';
129 if ($a_profile_link && $has_public_profile) {
130 $ilCtrl->setParameterByClass(end($a_ctrl_path),
'user_id', $row->usr_id);
131 if ($a_profile_back_link !=
'') {
132 $ilCtrl->setParameterByClass(
135 rawurlencode($a_profile_back_link)
138 $link = $ilCtrl->getLinkTargetByClass($a_ctrl_path,
'getHTML');
139 $pres =
'<a href="' . $link .
'">' . $pres .
'</a>';
145 $pres =
'<img class="ilUserXXSmall" src="' . $img .
'" alt="' .
$lng->txt(
'icon') .
146 ' ' .
$lng->txt(
'user_picture') .
'" /> ' . $pres;
150 $names[$row->usr_id] = $pres;
154 foreach ($a_user_id as
$id) {
155 if (!isset($names[$id])) {
156 $names[
$id] =
$lng->txt(
'deleted_user');
158 if ($names[$id] ===
'') {
159 $names[
$id] =
$lng->txt(
'usr_name_undisclosed');
163 if ($a_return_data_array) {
164 if ($return_as_array) {
167 return current(
$data);
170 return $return_as_array ? $names : $names[$a_user_id[0]];
176 $ilDB = $DIC[
'ilDB'];
179 'SELECT value FROM usr_pref ' .
180 ' WHERE usr_id = ' .
$ilDB->quote($a_user_id,
'integer') .
181 ' and keyword = ' .
$ilDB->quote(
'public_profile',
'text')
183 $rec =
$ilDB->fetchAssoc($set);
185 return in_array($rec[
'value'] ??
'', [
'y',
'g']);
196 $ctrl = $DIC[
'ilCtrl'];
199 if ($public_profile !=
'y' and $public_profile !=
'g') {
203 $ctrl->setParameterByClass(
'ilpublicuserprofilegui',
'user', $a_usr_id);
204 return $ctrl->getLinkTargetByClass(
'ilpublicuserprofilegui',
'getHTML');
207 public static function getStartingPointAsUrl():
string
getValidAndAccessibleStartingPointAsUrl()
static getProfileLink(int $a_usr_id)
Get link to personal profile Return empty string in case of not public profile.
static _lookupPref(int $a_usr_id, string $a_keyword)
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:
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static hasPublicProfile(int $a_user_id)