[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final 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 getIconName() { 18 return 'uiexamples'; 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 getApplicationOrder() { 34 return 0.110; 35 } 36 37 public function getRoutes() { 38 return array( 39 '/uiexample/' => array( 40 '' => 'PhabricatorUIExampleRenderController', 41 'view/(?P<class>[^/]+)/' => 'PhabricatorUIExampleRenderController', 42 ), 43 ); 44 } 45 46 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |