Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119901148
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
Mon, Jun 30, 09:41
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jul 2, 09:41 (2 d)
Engine
blob
Format
Raw Data
Handle
27081758
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