[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/feed/application/ -> PhabricatorFeedApplication.php (source)

   1  <?php
   2  
   3  final class PhabricatorFeedApplication extends PhabricatorApplication {
   4  
   5    public function getBaseURI() {
   6      return '/feed/';
   7    }
   8  
   9    public function getName() {
  10      return pht('Feed');
  11    }
  12  
  13    public function getShortDescription() {
  14      return pht('Review Recent Activity');
  15    }
  16  
  17    public function getIconName() {
  18      return 'feed';
  19    }
  20  
  21    public function canUninstall() {
  22      return false;
  23    }
  24  
  25    public function getRoutes() {
  26      return array(
  27        '/feed/' => array(
  28          'public/' => 'PhabricatorFeedPublicStreamController',
  29          '(?P<id>\d+)/' => 'PhabricatorFeedDetailController',
  30          '(?:query/(?P<queryKey>[^/]+)/)?' => 'PhabricatorFeedListController',
  31        ),
  32      );
  33    }
  34  
  35  }


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