Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97572908
PhabricatorLinkProfilePanel.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
Sun, Jan 5, 09:32
Size
593 B
Mime Type
text/x-php
Expires
Tue, Jan 7, 09:32 (2 d)
Engine
blob
Format
Raw Data
Handle
23429435
Attached To
rPH Phabricator
PhabricatorLinkProfilePanel.php
View Options
<?php
final
class
PhabricatorLinkProfilePanel
extends
PhabricatorProfilePanel
{
const
PANELKEY
=
'link'
;
protected
function
newNavigationMenuItems
(
PhabricatorProfilePanelConfiguration
$config
)
{
$icon
=
$config
->
getPanelProperty
(
'icon'
);
$name
=
$config
->
getPanelProperty
(
'name'
);
$href
=
$config
->
getPanelProperty
(
'href'
);
$item
=
id
(
new
PHUIListItemView
())
->
setRenderNameAsTooltip
(
true
)
->
setType
(
PHUIListItemView
::
TYPE_ICON_NAV
)
->
setHref
(
$href
)
->
setName
(
$name
)
->
setIcon
(
$icon
);
return
array
(
$item
,
);
}
}
Event Timeline
Log In to Comment