Summary: Partially complete advanced search (building a form that might be right). Test Plan: Check that form appears for advanced filter. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin, AnhNhan Differential Revision: https://secure.phabricator.com/D5807
45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationPaste extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/paste/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'paste';
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x9C\x8E";
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_UTILITIES;
|
|
}
|
|
|
|
public function getQuickCreateURI() {
|
|
return $this->getBaseURI().'create/';
|
|
}
|
|
|
|
public function getRemarkupRules() {
|
|
return array(
|
|
new PhabricatorPasteRemarkupRule(),
|
|
);
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/P(?P<id>[1-9]\d*)' => 'PhabricatorPasteViewController',
|
|
'/paste/' => array(
|
|
'' => 'PhabricatorPasteListController',
|
|
'create/' => 'PhabricatorPasteEditController',
|
|
'edit/(?P<id>[1-9]\d*)/' => 'PhabricatorPasteEditController',
|
|
'filter/(?P<filter>\w+)/' => 'PhabricatorPasteListController',
|
|
'query/(?P<queryKey>\w+)/'=> 'PhabricatorPasteListController',
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|