[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/xhprof/application/ -> PhabricatorXHProfApplication.php (source)

   1  <?php
   2  
   3  final class PhabricatorXHProfApplication extends PhabricatorApplication {
   4  
   5    public function getBaseURI() {
   6      return '/xhprof/';
   7    }
   8  
   9    public function getName() {
  10      return pht('XHProf');
  11    }
  12  
  13    public function getShortDescription() {
  14      return pht('PHP Profiling Tool');
  15    }
  16  
  17    public function getIconName() {
  18      return 'xhprof';
  19    }
  20  
  21    public function getTitleGlyph() {
  22      return "\xE2\x98\x84";
  23    }
  24  
  25    public function getApplicationGroup() {
  26      return self::GROUP_DEVELOPER;
  27    }
  28  
  29    public function getRoutes() {
  30      return array(
  31        '/xhprof/' => array(
  32          '' => 'PhabricatorXHProfSampleListController',
  33          'list/(?P<view>[^/]+)/' => 'PhabricatorXHProfSampleListController',
  34          'profile/(?P<phid>[^/]+)/' => 'PhabricatorXHProfProfileController',
  35        ),
  36      );
  37    }
  38  
  39  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1