Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96532595
PhabricatorFeedDetailController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Dec 27, 17:18
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 29, 17:18 (1 d, 8 h)
Engine
blob
Format
Raw Data
Handle
23198920
Attached To
rPH Phabricator
PhabricatorFeedDetailController.php
View Options
<?php
final
class
PhabricatorFeedDetailController
extends
PhabricatorFeedController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$story
=
id
(
new
PhabricatorFeedQuery
())
->
setViewer
(
$user
)
->
withChronologicalKeys
(
array
(
$this
->
id
))
->
executeOne
();
if
(!
$story
)
{
return
new
Aphront404Response
();
}
$feed
=
array
(
$story
);
$builder
=
new
PhabricatorFeedBuilder
(
$feed
);
$builder
->
setUser
(
$user
);
$feed_view
=
$builder
->
buildView
();
$title
=
pht
(
'Story'
);
$feed_view
=
phutil_tag_div
(
'phabricator-feed-frame'
,
$feed_view
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
$title
));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$feed_view
,
),
array
(
'title'
=>
$title
,
'device'
=>
true
,
));
}
}
Event Timeline
Log In to Comment