Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14012477
D12915.id31070.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D12915.id31070.diff
View Options
diff --git a/src/applications/people/event/PhabricatorPeopleHovercardEventListener.php b/src/applications/people/event/PhabricatorPeopleHovercardEventListener.php
--- a/src/applications/people/event/PhabricatorPeopleHovercardEventListener.php
+++ b/src/applications/people/event/PhabricatorPeopleHovercardEventListener.php
@@ -31,10 +31,16 @@
->setViewer($viewer)
->withIDs(array($user->getID()))
->needAvailability(true)
+ ->needProfile(true)
->executeOne();
$hovercard->setTitle($user->getUsername());
- $hovercard->setDetail($user->getRealName());
+ $profile = $user->getUserProfile();
+ $detail = $user->getRealName();
+ if ($profile->getTitle()) {
+ $detail .= ' - '.$profile->getTitle().'.';
+ }
+ $hovercard->setDetail($detail);
if ($user->getIsDisabled()) {
$hovercard->addField(pht('Account'), pht('Disabled'));
@@ -52,6 +58,13 @@
pht('User Since'),
phabricator_date($user->getDateCreated(), $viewer));
+ if ($profile->getBlurb()) {
+ $hovercard->addField(pht('Blurb'),
+ id(new PhutilUTF8StringTruncator())
+ ->setMaximumGlyphs(120)
+ ->truncateString($profile->getBlurb()));
+ }
+
$event->setValue('hovercard', $hovercard);
}
diff --git a/src/applications/people/storage/PhabricatorUser.php b/src/applications/people/storage/PhabricatorUser.php
--- a/src/applications/people/storage/PhabricatorUser.php
+++ b/src/applications/people/storage/PhabricatorUser.php
@@ -396,6 +396,10 @@
return substr(PhabricatorHash::digest($vec), 0, $len);
}
+ public function getUserProfile() {
+ return $this->assertAttached($this->profile);
+ }
+
public function attachUserProfile(PhabricatorUserProfile $profile) {
$this->profile = $profile;
return $this;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 2, 1:32 PM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6729208
Default Alt Text
D12915.id31070.diff (1 KB)
Attached To
Mode
D12915: People - fix hovercards for people
Attached
Detach File
Event Timeline
Log In to Comment