48 $this->db = $DIC->database();
49 $this->
ui = $DIC->ui()->factory();
50 $this->
lng = $DIC->language();
51 $this->
user = $DIC->user();
53 $this->letter_avatars_activated = (bool) $DIC->settings()->get(
'letter_avatars');
57 private function init(): void
59 $in = $this->db->in(
'usr_pref.keyword', array(
'public_upload',
'public_profile'),
false,
'text');
60 $res = $this->db->queryF(
62 SELECT usr_pref.*, ud.login, ud.firstname, ud.lastname 63 FROM usr_data ud LEFT JOIN usr_pref ON usr_pref.usr_id = ud.usr_id AND $in 64 WHERE ud.usr_id = %s",
69 while ($row = $this->db->fetchAssoc(
$res)) {
70 $this->
login = $row[
'login'] ??
'';
71 $this->firstname = $row[
'firstname'] ??
'';
72 $this->lastname = $row[
'lastname'] ??
'';
74 switch ($row[
'keyword']) {
76 $this->has_public_upload = $row[
'value'] ===
'y';
78 case 'public_profile':
79 $this->has_public_profile = ($row[
'value'] ===
'y' || $row[
'value'] ===
'g');
86 if (defined(
'ILIAS_MODULE')) {
87 $webspace_dir = (
'.' . $webspace_dir);
91 $image_dir = $webspace_dir .
'/usr_images';
92 $this->uploaded_file = $image_dir .
'/usr_' . $this->user_id .
'.jpg';
94 if ($this->has_public_profile) {
103 return (($this->has_public_upload && $this->has_public_profile) || $this->force_image) && is_file($this->uploaded_file);
113 if ($name_as_set_as_text_closely) {
114 $alternative_text = $this->
lng->txt(
"user_avatar");
115 } elseif ($this->user_id == $this->
user->getId() && !$this->user::_isAnonymous($this->user_id)) {
116 $alternative_text = $this->
lng->txt(
"current_user_avatar");
118 $alternative_text = $this->
lng->txt(
"user_avatar_of") .
" " .
$this->login;
123 return $this->
ui->symbol()->avatar()->picture($picture, $this->
login)
124 ->withLabel($alternative_text);
127 if ($this->letter_avatars_activated ===
false) {
128 return $this->
ui->symbol()->avatar()->picture(
134 return $this->
ui->symbol()->avatar()->letter($this->abbreviation)->withLabel($alternative_text);
137 public function getLegacyPictureURL():
string 141 return $this->uploaded_file .
'?t=' . random_int(1, 99999);
145 $avatar = $DIC[
"user.avatar.factory"]->avatar($this->size);
146 $avatar->setName($this->abbreviation);
147 $avatar->setUsrId($this->user_id);
149 return $avatar->getUrl();
159 if ($size ===
'small' || $size ===
'big') {
static getWebspaceDir(string $mode="filesystem")
get webspace directory
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static subStr(string $a_str, int $a_start, ?int $a_length=null)
__construct(int $user_id)
This describes how a letter or a picture avatar could be modified during construction of UI...
bool $letter_avatars_activated
Class ilUserAvatarResolver.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static signFile(string $path_to_file)
getAvatar(bool $name_as_set_as_text_closely=false)
setForcePicture(bool $force_image)
static _lookupLogin(int $a_user_id)