Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90391811
PhabricatorFavoritesProfileMenuEngine.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
Fri, Nov 1, 06:20
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 3, 06:20 (2 d)
Engine
blob
Format
Raw Data
Handle
22065557
Attached To
rPH Phabricator
PhabricatorFavoritesProfileMenuEngine.php
View Options
<?php
final
class
PhabricatorFavoritesProfileMenuEngine
extends
PhabricatorProfileMenuEngine
{
protected
function
isMenuEngineConfigurable
()
{
return
true
;
}
public
function
getItemURI
(
$path
)
{
return
"/favorites/menu/{$path}"
;
}
protected
function
getBuiltinProfileItems
(
$object
)
{
$items
=
array
();
$viewer
=
$this
->
getViewer
();
$engines
=
PhabricatorEditEngine
::
getAllEditEngines
();
$engines
=
msortv
(
$engines
,
'getQuickCreateOrderVector'
);
foreach
(
$engines
as
$engine
)
{
foreach
(
$engine
->
getDefaultQuickCreateFormKeys
()
as
$form_key
)
{
$form_hash
=
PhabricatorHash
::
digestForIndex
(
$form_key
);
$builtin_key
=
"editengine.form({$form_hash})"
;
$properties
=
array
(
'name'
=>
null
,
'formKey'
=>
$form_key
,
);
$items
[]
=
$this
->
newItem
()
->
setBuiltinKey
(
$builtin_key
)
->
setMenuItemKey
(
PhabricatorEditEngineProfileMenuItem
::
MENUITEMKEY
)
->
setMenuItemProperties
(
$properties
);
}
}
return
$items
;
}
}
Event Timeline
Log In to Comment