Differential D20852 Diff 49709 src/applications/dashboard/application/PhabricatorDashboardApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/dashboard/application/PhabricatorDashboardApplication.php
| Show First 20 Lines • Show All 63 Lines • ▼ Show 20 Lines | return array( | ||||
| => 'PhabricatorDashboardPanelTabsController', | => 'PhabricatorDashboardPanelTabsController', | ||||
| ), | ), | ||||
| ), | ), | ||||
| '/portal/' => array( | '/portal/' => array( | ||||
| $this->getQueryRoutePattern() => | $this->getQueryRoutePattern() => | ||||
| 'PhabricatorDashboardPortalListController', | 'PhabricatorDashboardPortalListController', | ||||
| $this->getEditRoutePattern('edit/') => | $this->getEditRoutePattern('edit/') => | ||||
| 'PhabricatorDashboardPortalEditController', | 'PhabricatorDashboardPortalEditController', | ||||
| 'view/(?P<portalID>\d)/' => array( | 'view/(?P<portalID>\d+)/' => array( | ||||
| '' => 'PhabricatorDashboardPortalViewController', | '' => 'PhabricatorDashboardPortalViewController', | ||||
| ) + $menu_rules, | ) + $menu_rules, | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getRemarkupRules() { | public function getRemarkupRules() { | ||||
| return array( | return array( | ||||
| new PhabricatorDashboardRemarkupRule(), | new PhabricatorDashboardRemarkupRule(), | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||