Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121330675
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, Jul 10, 02:33
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jul 12, 02:33 (2 d)
Engine
blob
Format
Raw Data
Handle
27311109
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