Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97976980
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 8, 04:40
Size
510 B
Mime Type
text/x-php
Expires
Fri, Jan 10, 04:40 (2 d)
Engine
blob
Format
Raw Data
Handle
23469699
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