Path: blob/master/src/applications/home/application/PhabricatorHomeApplication.php
12262 views
<?php12final class PhabricatorHomeApplication extends PhabricatorApplication {34const DASHBOARD_DEFAULT = 'dashboard:default';56public function getBaseURI() {7return '/home/';8}910public function getName() {11return pht('Home');12}1314public function getShortDescription() {15return pht('Command Center');16}1718public function getIcon() {19return 'fa-home';20}2122public function getRoutes() {23return array(24'/' => 'PhabricatorHomeMenuItemController',2526// NOTE: If you visit "/" on mobile, you get just the menu. If you visit27// "/home/" on mobile, you get the content. From the normal desktop28// UI, there's no difference between these pages.2930'/(?P<content>home)/' => array(31'' => 'PhabricatorHomeMenuItemController',32'menu/' => $this->getProfileMenuRouting(33'PhabricatorHomeMenuItemController'),34),35);36}3738public function isLaunchable() {39return false;40}4142public function getApplicationOrder() {43return 9;44}4546}474849