Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92744201
PhabricatorXHPASTViewController.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
Sat, Nov 23, 08:51
Size
494 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 08:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22503819
Attached To
rPH Phabricator
PhabricatorXHPASTViewController.php
View Options
<?php
abstract
class
PhabricatorXHPASTViewController
extends
PhabricatorController
{
public
function
buildStandardPageResponse
(
$view
,
array
$data
)
{
$page
=
$this
->
buildStandardPageView
();
$page
->
setApplicationName
(
'XHPASTView'
);
$page
->
setBaseURI
(
'/xhpast/'
);
$page
->
setTitle
(
idx
(
$data
,
'title'
));
$page
->
setGlyph
(
"
\x
E2
\x
96
\x
A0"
);
$page
->
appendChild
(
$view
);
$response
=
new
AphrontWebpageResponse
();
return
$response
->
setContent
(
$page
->
render
());
}
}
Event Timeline
Log In to Comment