Generate file attachment transactions for explicit Remarkup attachments on common...
[phabricator.git] / src / applications / phpast / application / PhabricatorPHPASTApplication.php
blobc61a6bf115026410cf0709c071aed8c39cda2cfa
1 <?php
3 final class PhabricatorPHPASTApplication extends PhabricatorApplication {
5 public function getName() {
6 return pht('PHPAST');
9 public function getBaseURI() {
10 return '/xhpast/';
13 public function getIcon() {
14 return 'fa-ambulance';
17 public function getShortDescription() {
18 return pht('Visual PHP Parser');
21 public function getTitleGlyph() {
22 return "\xE2\x96\xA0";
25 public function getApplicationGroup() {
26 return self::GROUP_DEVELOPER;
29 public function getRoutes() {
30 return array(
31 '/xhpast/' => array(
32 '' => 'PhabricatorXHPASTViewRunController',
33 'view/(?P<id>[1-9]\d*)/'
34 => 'PhabricatorXHPASTViewFrameController',
35 'frameset/(?P<id>[1-9]\d*)/'
36 => 'PhabricatorXHPASTViewFramesetController',
37 'input/(?P<id>[1-9]\d*)/'
38 => 'PhabricatorXHPASTViewInputController',
39 'tree/(?P<id>[1-9]\d*)/'
40 => 'PhabricatorXHPASTViewTreeController',
41 'stream/(?P<id>[1-9]\d*)/'
42 => 'PhabricatorXHPASTViewStreamController',