mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
8b06804394
Summary: Not used anymore Test Plan: grep for 'getIconName' Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11582
38 lines
691 B
PHP
38 lines
691 B
PHP
<?php
|
|
|
|
final class PhabricatorFactApplication extends PhabricatorApplication {
|
|
|
|
public function getShortDescription() {
|
|
return pht('Chart and Analyze Data');
|
|
}
|
|
|
|
public function getName() {
|
|
return pht('Facts');
|
|
}
|
|
|
|
public function getBaseURI() {
|
|
return '/fact/';
|
|
}
|
|
|
|
public function getFontIcon() {
|
|
return 'fa-line-chart';
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_UTILITIES;
|
|
}
|
|
|
|
public function isPrototype() {
|
|
return true;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/fact/' => array(
|
|
'' => 'PhabricatorFactHomeController',
|
|
'chart/' => 'PhabricatorFactChartController',
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|