Page MenuHomePhorge

PhabricatorChatLogApplication.php
No OneTemporary

Size
732 B
Referenced Files
None
Subscribers
None

PhabricatorChatLogApplication.php

<?php
final class PhabricatorChatLogApplication extends PhabricatorApplication {
public function getBaseURI() {
return '/chatlog/';
}
public function getShortDescription() {
return pht('IRC Logs');
}
public function getIconName() {
return 'chatlog';
}
public function isBeta() {
return true;
}
public function getTitleGlyph() {
return "\xE0\xBC\x84";
}
public function getApplicationGroup() {
return self::GROUP_UTILITIES;
}
public function getRoutes() {
return array(
'/chatlog/' => array(
'' => 'PhabricatorChatLogChannelListController',
'channel/(?P<channelID>[^/]+)/'
=> 'PhabricatorChatLogChannelLogController',
),
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 5, 12:43 AM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68832
Default Alt Text
PhabricatorChatLogApplication.php (732 B)

Event Timeline