@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 recaptime-dev/main 50 lines 950 B view raw
1<?php 2 3final class PhabricatorUIExamplesApplication extends PhabricatorApplication { 4 5 public function getBaseURI() { 6 return '/uiexample/'; 7 } 8 9 public function getShortDescription() { 10 return pht('Developer UI Examples'); 11 } 12 13 public function getName() { 14 return pht('UIExamples'); 15 } 16 17 public function getIcon() { 18 return 'fa-magnet'; 19 } 20 21 public function getTitleGlyph() { 22 return "\xE2\x8F\x9A"; 23 } 24 25 public function getFlavorText() { 26 return pht('A gallery of modern art.'); 27 } 28 29 public function getApplicationGroup() { 30 return self::GROUP_DEVELOPER; 31 } 32 33 public function isPrototype() { 34 return true; 35 } 36 37 public function getApplicationOrder() { 38 return 0.110; 39 } 40 41 public function getRoutes() { 42 return array( 43 '/uiexample/' => array( 44 '' => 'PhabricatorUIExampleRenderController', 45 'view/(?P<class>[^/]+)/' => 'PhabricatorUIExampleRenderController', 46 ), 47 ); 48 } 49 50}