@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class PhabricatorGuideApplication extends PhabricatorApplication {
4
5 public function getBaseURI() {
6 return '/guides/';
7 }
8
9 public function getName() {
10 return pht('Guides');
11 }
12
13 public function getShortDescription() {
14 return pht('Short Tutorials');
15 }
16
17 public function getIcon() {
18 return 'fa-map-o';
19 }
20
21 public function getApplicationGroup() {
22 return self::GROUP_UTILITIES;
23 }
24
25 public function getRoutes() {
26 return array(
27 '/guides/' => array(
28 '' => 'PhabricatorGuideModuleController',
29 '(?P<module>[^/]+)/' => 'PhabricatorGuideModuleController',
30 ),
31 );
32 }
33
34}