[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/notification/application/ -> PhabricatorNotificationsApplication.php (source)

   1  <?php
   2  
   3  final class PhabricatorNotificationsApplication extends PhabricatorApplication {
   4  
   5    public function getName() {
   6      return pht('Notifications');
   7    }
   8  
   9    public function getBaseURI() {
  10      return '/notification/';
  11    }
  12  
  13    public function getShortDescription() {
  14      return pht('Real-Time Updates and Alerts');
  15    }
  16  
  17    public function getRoutes() {
  18      return array(
  19        '/notification/' => array(
  20          '(?:query/(?P<queryKey>[^/]+)/)?'
  21            => 'PhabricatorNotificationListController',
  22          'panel/' => 'PhabricatorNotificationPanelController',
  23          'individual/' => 'PhabricatorNotificationIndividualController',
  24          'status/' => 'PhabricatorNotificationStatusController',
  25          'clear/' => 'PhabricatorNotificationClearController',
  26          'test/' => 'PhabricatorNotificationTestController',
  27        ),
  28      );
  29    }
  30  
  31    public function isLaunchable() {
  32      return false;
  33    }
  34  
  35  }


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