mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
42 lines
1,015 B
PHP
42 lines
1,015 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorApplicationSearch extends PhabricatorApplication {
|
||
|
|
||
|
public function getBaseURI() {
|
||
|
return '/search/';
|
||
|
}
|
||
|
|
||
|
public function getName() {
|
||
|
return pht('Search');
|
||
|
}
|
||
|
|
||
|
public function getShortDescription() {
|
||
|
return pht('Search & Find');
|
||
|
}
|
||
|
|
||
|
public function getFlavorText() {
|
||
|
return pht('Find stuff in big piles.');
|
||
|
}
|
||
|
|
||
|
public function shouldAppearInLaunchView() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function getRoutes() {
|
||
|
return array(
|
||
|
'/search/' => array(
|
||
|
'' => 'PhabricatorSearchController',
|
||
|
'(?P<key>[^/]+)/' => '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',
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|