mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 13:08:18 +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
62 lines
1.6 KiB
PHP
62 lines
1.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorConfigApplication extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/config/';
|
|
}
|
|
|
|
public function getFontIcon() {
|
|
return 'fa-sliders';
|
|
}
|
|
|
|
public function isPinnedByDefault(PhabricatorUser $viewer) {
|
|
return $viewer->getIsAdmin();
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x98\xBA";
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_ADMIN;
|
|
}
|
|
|
|
public function canUninstall() {
|
|
return false;
|
|
}
|
|
|
|
public function getName() {
|
|
return 'Config';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Configure Phabricator');
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/config/' => array(
|
|
'' => 'PhabricatorConfigListController',
|
|
'all/' => 'PhabricatorConfigAllController',
|
|
'history/' => 'PhabricatorConfigHistoryController',
|
|
'edit/(?P<key>[\w\.\-]+)/' => 'PhabricatorConfigEditController',
|
|
'group/(?P<key>[^/]+)/' => 'PhabricatorConfigGroupController',
|
|
'welcome/' => 'PhabricatorConfigWelcomeController',
|
|
'database/'.
|
|
'(?:(?P<database>[^/]+)/'.
|
|
'(?:(?P<table>[^/]+)/'.
|
|
'(?:(?:col/(?P<column>[^/]+)|key/(?P<key>[^/]+))/)?)?)?'
|
|
=> 'PhabricatorConfigDatabaseStatusController',
|
|
'dbissue/' => 'PhabricatorConfigDatabaseIssueController',
|
|
'(?P<verb>ignore|unignore)/(?P<key>[^/]+)/'
|
|
=> 'PhabricatorConfigIgnoreController',
|
|
'issue/' => array(
|
|
'' => 'PhabricatorConfigIssueListController',
|
|
'(?P<key>[^/]+)/' => 'PhabricatorConfigIssueViewController',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|