[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorSubscriptionsApplication extends PhabricatorApplication { 4 5 public function getName() { 6 return pht('Subscriptions'); 7 } 8 9 public function isLaunchable() { 10 return false; 11 } 12 13 public function canUninstall() { 14 return false; 15 } 16 17 public function getEventListeners() { 18 return array( 19 new PhabricatorSubscriptionsUIEventListener(), 20 ); 21 } 22 23 public function getRoutes() { 24 return array( 25 '/subscriptions/' => array( 26 '(?P<action>add|delete)/'. 27 '(?P<phid>[^/]+)/' => 'PhabricatorSubscriptionsEditController', 28 'list/(?P<phid>[^/]+)/' => 'PhabricatorSubscriptionsListController', 29 'transaction/(?P<type>add|rem)/(?<phid>[^/]+)/' 30 => 'PhabricatorSubscriptionsTransactionController', 31 ), 32 ); 33 } 34 35 }
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 |