Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98636131
PhabricatorSearchApplication.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 15, 03:15
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jan 17, 03:15 (2 d)
Engine
blob
Format
Raw Data
Handle
23609504
Attached To
rPH Phabricator
PhabricatorSearchApplication.php
View Options
<?php
final
class
PhabricatorSearchApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/search/'
;
}
public
function
getName
()
{
return
pht
(
'Search'
);
}
public
function
getShortDescription
()
{
return
pht
(
'Full-Text Search'
);
}
public
function
getFlavorText
()
{
return
pht
(
'Find stuff in big piles.'
);
}
public
function
getIconName
()
{
return
'search'
;
}
public
function
isLaunchable
()
{
return
false
;
}
public
function
getRoutes
()
{
return
array
(
'/search/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorSearchController'
,
'attach/(?P<phid>[^/]+)/(?P<type>
\w
+)/(?:(?P<action>
\w
+)/)?'
=>
'PhabricatorSearchAttachController'
,
'select/(?P<type>
\w
+)/'
=>
'PhabricatorSearchSelectController'
,
'index/(?P<phid>[^/]+)/'
=>
'PhabricatorSearchIndexController'
,
'hovercard/(?P<mode>retrieve|test)/'
=>
'PhabricatorSearchHovercardController'
,
'edit/(?P<queryKey>[^/]+)/'
=>
'PhabricatorSearchEditController'
,
'delete/(?P<queryKey>[^/]+)/(?P<engine>[^/]+)/'
=>
'PhabricatorSearchDeleteController'
,
'order/(?P<engine>[^/]+)/'
=>
'PhabricatorSearchOrderController'
,
),
);
}
}
Event Timeline
Log In to Comment