Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112679925
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
Mon, May 12, 06:00
Size
1 KB
Mime Type
text/x-php
Expires
Wed, May 14, 06:00 (2 d)
Engine
blob
Format
Raw Data
Handle
26106782
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
(
//'/' => 'PhabricatorHomeMenuItemController', // c4science custo
// 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', // c4science custo
'menu/'
=>
$this
->
getProfileMenuRouting
(
'PhabricatorHomeMenuItemController'
),
),
);
}
public
function
isLaunchable
()
{
return
false
;
}
public
function
getApplicationOrder
()
{
return
9
;
}
}
Event Timeline
Log In to Comment