Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/help/application/PhabricatorHelpApplication.php
12242 views
1
<?php
2
3
final class PhabricatorHelpApplication extends PhabricatorApplication {
4
5
public function getName() {
6
return pht('Help');
7
}
8
9
public function canUninstall() {
10
return false;
11
}
12
13
public function isUnlisted() {
14
return true;
15
}
16
17
public function getRoutes() {
18
return array(
19
'/help/' => array(
20
'keyboardshortcut/' => 'PhabricatorHelpKeyboardShortcutController',
21
'documentation/(?P<application>\w+)/'
22
=> 'PhabricatorHelpDocumentationController',
23
),
24
);
25
}
26
27
}
28
29