mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-01 09:28:22 +01:00
fe5cd4ca2c
Summary: Normalizes all `setFontIcon` calls to `setIcon`. Test Plan: UIExamples, Almanac, Apps list, etc. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, hach-que, yelirekim Differential Revision: https://secure.phabricator.com/D15129
43 lines
801 B
PHP
43 lines
801 B
PHP
<?php
|
|
|
|
final class PhabricatorChatLogApplication extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/chatlog/';
|
|
}
|
|
|
|
public function getName() {
|
|
return pht('ChatLog');
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('(Deprecated)');
|
|
}
|
|
|
|
public function getIcon() {
|
|
return 'fa-coffee';
|
|
}
|
|
|
|
public function isPrototype() {
|
|
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',
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|