@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
fork

Configure Feed

Select the types of activity you want to include in your feed.

at upstream/main 54 lines 1.4 kB view raw
1<?php 2 3final class PhabricatorApplicationsApplication extends PhabricatorApplication { 4 5 public function getName() { 6 return pht('Applications'); 7 } 8 9 public function canUninstall() { 10 return false; 11 } 12 13 public function isLaunchable() { 14 // This application is launchable in the traditional sense, but showing it 15 // on the application launch list is confusing. 16 return false; 17 } 18 19 public function getBaseURI() { 20 return '/applications/'; 21 } 22 23 public function getShortDescription() { 24 return pht('Explore More Applications'); 25 } 26 27 public function getIcon() { 28 return 'fa-globe'; 29 } 30 31 public function getTitleGlyph() { 32 return "\xE0\xBC\x84"; 33 } 34 35 public function getRoutes() { 36 return array( 37 '/applications/' => array( 38 '(?:query/(?P<queryKey>[^/]+)/)?' 39 => 'PhabricatorApplicationsListController', 40 'view/(?P<application>\w+)/' 41 => 'PhabricatorApplicationDetailViewController', 42 'edit/(?P<application>\w+)/' 43 => 'PhabricatorApplicationEditController', 44 'mailcommands/(?P<application>\w+)/(?P<type>\w+)/' 45 => 'PhabricatorApplicationEmailCommandsController', 46 '(?P<application>\w+)/(?P<action>install|uninstall)/' 47 => 'PhabricatorApplicationUninstallController', 48 'panel/(?P<application>\w+)/(?P<panel>\w+)/(?P<path>.*)' 49 => 'PhabricatorApplicationPanelController', 50 ), 51 ); 52 } 53 54}