Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92942352
PhabricatorLinkProfileMenuItem.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, Nov 25, 00:35
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Nov 27, 00:35 (2 d)
Engine
blob
Format
Raw Data
Handle
22542727
Attached To
rPH Phabricator
PhabricatorLinkProfileMenuItem.php
View Options
<?php
final
class
PhabricatorLinkProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'link'
;
public
function
getMenuItemTypeIcon
()
{
return
'fa-link'
;
}
public
function
getMenuItemTypeName
()
{
return
pht
(
'Link'
);
}
public
function
canAddToObject
(
$object
)
{
return
true
;
}
public
function
getDisplayName
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
$this
->
getLinkName
(
$config
);
}
public
function
buildEditEngineFields
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
array
(
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'name'
)
->
setLabel
(
pht
(
'Name'
))
->
setIsRequired
(
true
)
->
setValue
(
$this
->
getLinkName
(
$config
)),
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'uri'
)
->
setLabel
(
pht
(
'URI'
))
->
setIsRequired
(
true
)
->
setValue
(
$this
->
getLinkURI
(
$config
)),
id
(
new
PhabricatorIconSetEditField
())
->
setKey
(
'icon'
)
->
setLabel
(
pht
(
'Icon'
))
->
setIconSet
(
new
PhabricatorProfileMenuItemIconSet
())
->
setValue
(
$this
->
getLinkIcon
(
$config
)),
);
}
private
function
getLinkName
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
$config
->
getMenuItemProperty
(
'name'
);
}
private
function
getLinkIcon
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
$config
->
getMenuItemProperty
(
'icon'
,
'link'
);
}
private
function
getLinkURI
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
$config
->
getMenuItemProperty
(
'uri'
);
}
private
function
isValidLinkURI
(
$uri
)
{
return
PhabricatorEnv
::
isValidURIForLink
(
$uri
);
}
protected
function
newNavigationMenuItems
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$icon
=
$this
->
getLinkIcon
(
$config
);
$name
=
$this
->
getLinkName
(
$config
);
$href
=
$this
->
getLinkURI
(
$config
);
if
(!
$this
->
isValidLinkURI
(
$href
))
{
$href
=
'#'
;
}
$icon_object
=
id
(
new
PhabricatorProfileMenuItemIconSet
())
->
getIcon
(
$icon
);
if
(
$icon_object
)
{
$icon_class
=
$icon_object
->
getIcon
();
}
else
{
$icon_class
=
'fa-link'
;
}
$item
=
$this
->
newItem
()
->
setHref
(
$href
)
->
setName
(
$name
)
->
setIcon
(
$icon_class
);
return
array
(
$item
,
);
}
}
Event Timeline
Log In to Comment