[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/mailinglists/application/ -> PhabricatorMailingListsApplication.php (source)

   1  <?php
   2  
   3  final class PhabricatorMailingListsApplication extends PhabricatorApplication {
   4  
   5    public function getName() {
   6      return 'Mailing Lists';
   7    }
   8  
   9    public function getBaseURI() {
  10      return '/mailinglists/';
  11    }
  12  
  13    public function getShortDescription() {
  14      return 'Manage External Lists';
  15    }
  16  
  17    public function getIconName() {
  18      return 'mail';
  19    }
  20  
  21    public function getApplicationGroup() {
  22      return self::GROUP_ADMIN;
  23    }
  24  
  25    public function getRoutes() {
  26      return array(
  27        '/mailinglists/' => array(
  28          '(?:query/(?P<queryKey>[^/]+)/)?'
  29            => 'PhabricatorMailingListsListController',
  30          'edit/(?:(?P<id>[1-9]\d*)/)?'
  31            => 'PhabricatorMailingListsEditController',
  32        ),
  33      );
  34    }
  35  
  36    public function getTitleGlyph() {
  37      return '@';
  38    }
  39  
  40  }


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