Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104732055
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
Tue, Mar 11, 22:23
Size
1015 B
Mime Type
text/x-php
Expires
Thu, Mar 13, 22:23 (2 d)
Engine
blob
Format
Raw Data
Handle
24852563
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
->
addTextCrumb
(
$title
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$feed_view
,
),
array
(
'title'
=>
$title
,
'device'
=>
true
,
));
}
}
Event Timeline
Log In to Comment