Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F19081892
PhabricatorHomeProfileMenuEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorHomeProfileMenuEngine.php
View Options
<?php
final
class
PhabricatorHomeProfileMenuEngine
extends
PhabricatorProfileMenuEngine
{
protected
function
isMenuEngineConfigurable
()
{
return
true
;
}
public
function
getItemURI
(
$path
)
{
return
"/home/menu/{$path}"
;
}
protected
function
buildItemViewContent
(
PhabricatorProfileMenuItemConfiguration
$item
)
{
$viewer
=
$this
->
getViewer
();
// Add content to the document so that you can drag-and-drop files onto
// the home page or any home dashboard to upload them.
$upload
=
id
(
new
PhabricatorGlobalUploadTargetView
())
->
setUser
(
$viewer
);
$content
=
parent
::
buildItemViewContent
(
$item
);
return
array
(
$content
,
$upload
,
);
}
protected
function
getBuiltinProfileItems
(
$object
)
{
$viewer
=
$this
->
getViewer
();
$items
=
array
();
$custom_phid
=
$this
->
getCustomPHID
();
$applications
=
id
(
new
PhabricatorApplicationQuery
())
->
setViewer
(
$viewer
)
->
withInstalled
(
true
)
->
withUnlisted
(
false
)
->
withLaunchable
(
true
)
->
execute
();
// Default Home Dashboard
$items
[]
=
$this
->
newItem
()
->
setBuiltinKey
(
PhabricatorHomeConstants
::
ITEM_HOME
)
->
setMenuItemKey
(
PhabricatorHomeProfileMenuItem
::
MENUITEMKEY
);
$items
[]
=
$this
->
newItem
()
->
setBuiltinKey
(
PhabricatorHomeConstants
::
ITEM_APPS_LABEL
)
->
setMenuItemKey
(
PhabricatorLabelProfileMenuItem
::
MENUITEMKEY
)
->
setMenuItemProperties
(
array
(
'name'
=>
pht
(
'Favorites'
)));
foreach
(
$applications
as
$application
)
{
if
(!
$application
->
isPinnedByDefault
(
$viewer
))
{
continue
;
}
$properties
=
array
(
'name'
=>
''
,
'application'
=>
$application
->
getPHID
(),
);
$items
[]
=
$this
->
newItem
()
->
setBuiltinKey
(
$application
->
getPHID
())
->
setMenuItemKey
(
PhabricatorApplicationProfileMenuItem
::
MENUITEMKEY
)
->
setMenuItemProperties
(
$properties
);
}
$items
[]
=
$this
->
newItem
()
->
setBuiltinKey
(
PhabricatorHomeConstants
::
ITEM_LAUNCHER
)
->
setMenuItemKey
(
PhabricatorHomeLauncherProfileMenuItem
::
MENUITEMKEY
);
$items
[]
=
$this
->
newDividerItem
(
'tail'
);
$items
[]
=
$this
->
newManageItem
();
return
$items
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Dec 4, 8:41 AM (1 d, 17 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8329288
Default Alt Text
PhabricatorHomeProfileMenuEngine.php (2 KB)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment