[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorConsoleApplication extends PhabricatorApplication { 4 5 public function getName() { 6 return pht('Console'); 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 '/~/' => array( 20 '' => 'DarkConsoleController', 21 'data/(?P<key>[^/]+)/' => 'DarkConsoleDataController', 22 ), 23 ); 24 } 25 26 }
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 |