Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/chatlog/application/PhabricatorChatLogApplication.php
12242 views
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('(Deprecated)');
15
}
16
17
public function getIcon() {
18
return 'fa-coffee';
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
}
44
45