Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4852527
PhabricatorFeedStoryManiphestAggregate.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorFeedStoryManiphestAggregate.php
View Options
<?php
final
class
PhabricatorFeedStoryManiphestAggregate
extends
PhabricatorFeedStoryAggregate
{
public
function
renderView
(
)
{
$data
=
$this
->
getStoryData
(
)
;
$task_link
=
$this
->
linkTo
(
$data
->
getValue
(
'taskPHID'
)
)
;
$authors
=
$this
->
getAuthorPHIDs
(
)
;
// TODO: These aren't really translatable because linkTo() returns a
// string, not an object with a gender.
switch
(
count
(
$authors
)
)
{
case
1
:
$author
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$title
=
pht
(
'%s made multiple updates to %s'
,
$author
,
$task_link
)
;
break
;
case
2
:
$author1
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$author2
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$title
=
pht
(
'%s and %s made multiple updates to %s'
,
$author1
,
$author2
,
$task_link
)
;
break
;
case
3
:
$author1
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$author2
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$author3
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$title
=
pht
(
'%s, %s, and %s made multiple updates to %s'
,
$author1
,
$author2
,
$author3
,
$task_link
)
;
break
;
default
:
$author1
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$author2
=
$this
->
linkTo
(
array_shift
(
$authors
)
)
;
$others
=
count
(
$authors
)
;
$title
=
pht
(
'%s, %s, and %d others made multiple updates to %s'
,
$author1
,
$author2
,
$others
,
$task_link
)
;
break
;
}
$view
=
$this
->
newStoryView
(
)
;
$view
->
setAppIcon
(
'maniphest-dark'
)
;
$view
->
setTitle
(
$title
)
;
$href
=
$this
->
getHandle
(
$data
->
getValue
(
'taskPHID'
)
)
->
getURI
(
)
;
$view
->
setHref
(
$href
)
;
return
$view
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 9, 06:37 (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1756152
Default Alt Text
PhabricatorFeedStoryManiphestAggregate.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment