Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110087491
PhabricatorHomeProfileMenuEngine.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
Thu, Apr 24, 15:42
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Apr 26, 15:42 (2 d)
Engine
blob
Format
Raw Data
Handle
25751593
Attached To
rPH Phabricator
PhabricatorHomeProfileMenuEngine.php
View Options
<?php
final
class
PhabricatorHomeProfileMenuEngine
extends
PhabricatorProfileMenuEngine
{
protected
function
isMenuEngineConfigurable
()
{
return
true
;
}
public
function
getItemURI
(
$path
)
{
$object
=
$this
->
getProfileObject
();
$custom
=
$this
->
getCustomPHID
();
if
(
$custom
)
{
return
"/home/menu/personal/item/{$path}"
;
}
else
{
return
"/home/menu/global/item/{$path}"
;
}
}
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
();
foreach
(
$applications
as
$application
)
{
if
(!
$application
->
isPinnedByDefault
(
$viewer
))
{
continue
;
}
$properties
=
array
(
'name'
=>
$application
->
getName
(),
'application'
=>
$application
->
getPHID
(),
);
$items
[]
=
$this
->
newItem
()
->
setBuiltinKey
(
$application
->
getPHID
())
->
setMenuItemKey
(
PhabricatorApplicationProfileMenuItem
::
MENUITEMKEY
)
->
setMenuItemProperties
(
$properties
);
}
// Single Manage Item, switches URI based on admin/user
$items
[]
=
$this
->
newItem
()
->
setBuiltinKey
(
PhabricatorHomeConstants
::
ITEM_MANAGE
)
->
setMenuItemKey
(
PhabricatorHomeManageProfileMenuItem
::
MENUITEMKEY
);
return
$items
;
}
}
Event Timeline
Log In to Comment