Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100304952
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
Wed, Jan 29, 20:12
Size
510 B
Mime Type
text/x-php
Expires
Fri, Jan 31, 20:12 (2 d)
Engine
blob
Format
Raw Data
Handle
23945925
Attached To
rPH Phabricator
PhabricatorSearchBaseController.php
View Options
<?php
/**
* @group search
*/
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