Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105860438
PhabricatorFlagController.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
Thu, Mar 20, 08:29
Size
496 B
Mime Type
text/x-php
Expires
Sat, Mar 22, 08:29 (2 d)
Engine
blob
Format
Raw Data
Handle
25044196
Attached To
rPH Phabricator
PhabricatorFlagController.php
View Options
<?php
abstract
class
PhabricatorFlagController
extends
PhabricatorController
{
public
function
buildStandardPageResponse
(
$view
,
array
$data
)
{
$page
=
$this
->
buildStandardPageView
();
$page
->
setApplicationName
(
pht
(
'Flag'
));
$page
->
setBaseURI
(
'/flag/'
);
$page
->
setTitle
(
idx
(
$data
,
'title'
));
$page
->
setGlyph
(
"
\x
E2
\x
9A
\x
90"
);
// Subtle!
$page
->
appendChild
(
$view
);
$response
=
new
AphrontWebpageResponse
();
return
$response
->
setContent
(
$page
->
render
());
}
}
Event Timeline
Log In to Comment