Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92768607
PhabricatorHomeApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 23, 13:51
Size
921 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 13:51 (2 d)
Engine
blob
Format
Raw Data
Handle
22507664
Attached To
rPH Phabricator
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
(
'/'
=>
'PhabricatorHomeMainController'
,
'/(?P<only>home)/'
=>
'PhabricatorHomeMainController'
,
'/home/'
=>
array
(
'menu/'
=>
array
(
''
=>
'PhabricatorHomeMenuController'
,
'(?P<type>global|personal)/item/'
=>
$this
->
getProfileMenuRouting
(
'PhabricatorHomeMenuItemController'
),
),
),
);
}
public
function
isLaunchable
()
{
return
false
;
}
public
function
getApplicationOrder
()
{
return
9
;
}
}
Event Timeline
Log In to Comment