Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15423367
D10169.id24460.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
D10169.id24460.diff
View Options
diff --git a/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php b/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
--- a/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
+++ b/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
@@ -166,6 +166,16 @@
return parent::buildSavedQueryFromBuiltin($query_key);
}
+ protected function getRequiredHandlePHIDsForResultList(
+ array $objects,
+ PhabricatorSavedQuery $query) {
+ $phids = array();
+ foreach ($objects as $event) {
+ $phids[$event->getUserPHID()] = 1;
+ }
+ return array_keys($phids);
+ }
+
protected function renderResultList(
array $events,
PhabricatorSavedQuery $query,
@@ -192,6 +202,7 @@
}
$from = phabricator_datetime($event->getDateFrom(), $viewer);
$to = phabricator_datetime($event->getDateTo(), $viewer);
+ $creator_handle = $handles[$event->getUserPHID()];
$color = ($event->getStatus() == PhabricatorCalendarEvent::STATUS_AWAY)
? 'red'
@@ -201,6 +212,7 @@
->setHeader($event->getTerseSummary($viewer))
->setHref($href)
->setBarColor($color)
+ ->addByline(pht('Creator: %s', $creator_handle->renderLink()))
->addAttribute(pht('From %s to %s', $from, $to))
->addAttribute(
phutil_utf8_shorten($event->getDescription(), 64));
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 23, 3:10 PM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7707094
Default Alt Text
D10169.id24460.diff (1 KB)
Attached To
Mode
D10169: Events - add a byline to event list
Attached
Detach File
Event Timeline
Log In to Comment