Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102213582
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, Feb 18, 08:17
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 08:17 (2 d)
Engine
blob
Format
Raw Data
Handle
24308082
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
();
}
if
(
$request
->
getStr
(
'text'
))
{
$text
=
$story
->
renderText
();
return
id
(
new
AphrontPlainTextResponse
())->
setContent
(
$text
);
}
$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
,
));
}
}
Event Timeline
Log In to Comment