ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ProfileGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Repository\Profile;
22 
24 
26 {
28  protected \ILIAS\UI\Factory $ui_factory;
29 
30  public function __construct(
31  ProfileAdapter $profile,
32  \ILIAS\UI\Factory $ui_factory
33  ) {
34  $this->ui_factory = $ui_factory;
35  $this->profile = $profile;
36  }
37 
38  public function getAvatar(int $user_id): Avatar
39  {
40  if ($this->profile->exists($user_id)) {
41  $avatar = \ilObjUser::_getAvatar($user_id);
42  } else {
43  $avatar = $this->ui_factory->symbol()->avatar()->letter($this->profile->getDeletedUserAvatarText());
44  }
45  return $avatar;
46  }
47 
48  public function getPicturePath(int $user_id): string
49  {
50  global $DIC;
51 
52  if ($this->profile->exists($user_id)) {
53  return \ilObjUser::_getPersonalPicturePath($user_id, "xsmall", true, true);
54  }
55  $fac = new \ilUserAvatarFactory($DIC);
56  $avatar = $fac->avatar("xsmall");
57  $avatar->setName(substr($this->profile->getDeletedUserAvatarText(), 0, 2));
58  $avatar->setUsrId($user_id);
59  return $avatar->getUrl();
60  }
61 
62  public function getNamePresentation(int $user_id, bool $link_profile = false, string $back = "", $force_first_last = false): string
63  {
64  if ($this->profile->exists($user_id)) {
65  $name = \ilUserUtil::getNamePresentation($user_id, false, $link_profile, $back, $force_first_last);
66  } else {
67  $name = $this->profile->getDeletedUserNamePresentation();
68  }
69  return $name;
70  }
71 }
Interface Observer Contains several chained tasks and infos about them.
static _getAvatar(int $a_usr_id)
getNamePresentation(int $user_id, bool $link_profile=false, string $back="", $force_first_last=false)
Definition: ProfileGUI.php:62
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:
__construct(ProfileAdapter $profile, \ILIAS\UI\Factory $ui_factory)
Definition: ProfileGUI.php:30
This describes how a letter or a picture avatar could be modified during construction of UI...
Definition: Avatar.php:28
global $DIC
Definition: shib_login.php:22
Builds data types.
Definition: Factory.php:35