Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2896713
PhabricatorHomeApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorHomeApplication.php
View Options
<?php
final
class
PhabricatorHomeApplication
extends
PhabricatorApplication
{
const
DASHBOARD_DEFAULT
=
'dashboard:default'
;
public
function
getBaseURI
(
)
{
return
'/home/'
;
}
public
function
getName
(
)
{
return
pht
(
'Home'
)
;
}
public
function
getShortDescription
(
)
{
return
pht
(
'Command Center'
)
;
}
public
function
getIcon
(
)
{
return
'fa-home'
;
}
public
function
getRoutes
(
)
{
return
array
(
'/'
=>
'PhabricatorHomeMenuItemController'
,
// NOTE: If you visit "/" on mobile, you get just the menu. If you visit
// "/home/" on mobile, you get the content. From the normal desktop
// UI, there's no difference between these pages.
'/(?P<content>home)/'
=>
array
(
''
=>
'PhabricatorHomeMenuItemController'
,
'menu/'
=>
$this
->
getProfileMenuRouting
(
'PhabricatorHomeMenuItemController'
)
,
)
,
)
;
}
public
function
isLaunchable
(
)
{
return
false
;
}
public
function
getApplicationOrder
(
)
{
return
9
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 23:27 (6 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1129905
Default Alt Text
PhabricatorHomeApplication.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment