[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/chatlog/application/ -> PhabricatorChatLogApplication.php (source)

   1  <?php
   2  
   3  final class PhabricatorChatLogApplication extends PhabricatorApplication {
   4  
   5    public function getBaseURI() {
   6      return '/chatlog/';
   7    }
   8  
   9    public function getName() {
  10      return pht('ChatLog');
  11    }
  12  
  13    public function getShortDescription() {
  14      return pht('IRC Logs');
  15    }
  16  
  17    public function getIconName() {
  18      return 'chatlog';
  19    }
  20  
  21    public function isPrototype() {
  22      return true;
  23    }
  24  
  25    public function getTitleGlyph() {
  26      return "\xE0\xBC\x84";
  27    }
  28  
  29    public function getApplicationGroup() {
  30      return self::GROUP_UTILITIES;
  31    }
  32  
  33   public function getRoutes() {
  34      return array(
  35        '/chatlog/' => array(
  36         '' => 'PhabricatorChatLogChannelListController',
  37         'channel/(?P<channelID>[^/]+)/'
  38            => 'PhabricatorChatLogChannelLogController',
  39         ),
  40      );
  41    }
  42  
  43  }


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