mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
44942f3378
Summary: move code to uninstallable help app rather than diviner. Fixes T4690. Test Plan: uninstalled diviner, noted no links, then moved the code and suddenly helpful help links showed up once more. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T4690 Differential Revision: https://secure.phabricator.com/D8638
48 lines
1 KiB
PHP
48 lines
1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationDiviner extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/diviner/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'diviner';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Documentation');
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x97\x89";
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/diviner/' => array(
|
|
'' => 'DivinerMainController',
|
|
'query/((?<key>[^/]+)/)?' => 'DivinerAtomListController',
|
|
'find/' => 'DivinerFindController',
|
|
),
|
|
'/book/(?P<book>[^/]+)/' => 'DivinerBookController',
|
|
'/book/'.
|
|
'(?P<book>[^/]+)/'.
|
|
'(?P<type>[^/]+)/'.
|
|
'(?:(?P<context>[^/]+)/)?'.
|
|
'(?P<name>[^/]+)/'.
|
|
'(?:(?P<index>\d+)/)?' => 'DivinerAtomController',
|
|
);
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_COMMUNICATION;
|
|
}
|
|
|
|
public function getRemarkupRules() {
|
|
return array(
|
|
new DivinerRemarkupRuleSymbol(),
|
|
);
|
|
}
|
|
|
|
}
|