Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93886771
PhabricatorSearchBaseController.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
Mon, Dec 2, 06:52
Size
485 B
Mime Type
text/x-php
Expires
Wed, Dec 4, 06:52 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22708444
Attached To
rPH Phabricator
PhabricatorSearchBaseController.php
View Options
<?php
abstract
class
PhabricatorSearchBaseController
extends
PhabricatorController
{
public
function
buildStandardPageResponse
(
$view
,
array
$data
)
{
$page
=
$this
->
buildStandardPageView
();
$page
->
setApplicationName
(
'Search'
);
$page
->
setBaseURI
(
'/search/'
);
$page
->
setTitle
(
idx
(
$data
,
'title'
));
$page
->
setGlyph
(
"
\x
C2
\x
BF"
);
$page
->
appendChild
(
$view
);
$response
=
new
AphrontWebpageResponse
();
return
$response
->
setContent
(
$page
->
render
());
}
}
Event Timeline
Log In to Comment