Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F555101
PhabricatorLinkProfileMenuItem.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PhabricatorLinkProfileMenuItem.php
View Options
<?php
final
class
PhabricatorLinkProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'link'
;
const
FIELD_URI
=
'uri'
;
const
FIELD_NAME
=
'name'
;
const
FIELD_TOOLTIP
=
'tooltip'
;
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
(
self
::
FIELD_NAME
)
->
setLabel
(
pht
(
'Name'
))
->
setIsRequired
(
true
)
->
setValue
(
$this
->
getLinkName
(
$config
)),
id
(
new
PhabricatorTextEditField
())
->
setKey
(
self
::
FIELD_URI
)
->
setLabel
(
pht
(
'URI'
))
->
setIsRequired
(
true
)
->
setValue
(
$this
->
getLinkURI
(
$config
)),
id
(
new
PhabricatorTextEditField
())
->
setKey
(
self
::
FIELD_TOOLTIP
)
->
setLabel
(
pht
(
'Tooltip'
))
->
setValue
(
$this
->
getLinkTooltip
(
$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
getLinkTooltip
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
$config
->
getMenuItemProperty
(
'tooltip'
);
}
protected
function
newMenuItemViewList
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$icon
=
$this
->
getLinkIcon
(
$config
);
$name
=
$this
->
getLinkName
(
$config
);
$uri
=
$this
->
getLinkURI
(
$config
);
$tooltip
=
$this
->
getLinkTooltip
(
$config
);
$icon_object
=
id
(
new
PhabricatorProfileMenuItemIconSet
())
->
getIcon
(
$icon
);
if
(
$icon_object
)
{
$icon_class
=
$icon_object
->
getIcon
();
}
else
{
$icon_class
=
'fa-link'
;
}
$item
=
$this
->
newItemView
()
->
setURI
(
$uri
)
->
setName
(
$name
)
->
setIcon
(
$icon_class
)
->
setTooltip
(
$tooltip
)
->
setIsExternalLink
(
true
);
return
array
(
$item
,
);
}
public
function
validateTransactions
(
PhabricatorProfileMenuItemConfiguration
$config
,
$field_key
,
$value
,
array
$xactions
)
{
$viewer
=
$this
->
getViewer
();
$errors
=
array
();
if
(
$field_key
==
self
::
FIELD_NAME
)
{
if
(
$this
->
isEmptyTransaction
(
$value
,
$xactions
))
{
$errors
[]
=
$this
->
newRequiredError
(
pht
(
'You must choose a link name.'
),
$field_key
);
}
}
if
(
$field_key
==
self
::
FIELD_URI
)
{
if
(
$this
->
isEmptyTransaction
(
$value
,
$xactions
))
{
$errors
[]
=
$this
->
newRequiredError
(
pht
(
'You must choose a URI to link to.'
),
$field_key
);
}
foreach
(
$xactions
as
$xaction
)
{
$new
=
$xaction
[
'new'
];
if
(!
$new
)
{
continue
;
}
if
(
$new
===
$value
)
{
continue
;
}
if
(!
PhabricatorEnv
::
isValidURIForLink
(
$new
))
{
$errors
[]
=
$this
->
newInvalidError
(
pht
(
'URI "%s" is not a valid link URI. It should be a full, valid '
.
'URI beginning with a protocol like "%s".'
,
$new
,
'https://'
),
$xaction
[
'xaction'
]);
}
}
}
return
$errors
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 6:23 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
112943
Default Alt Text
PhabricatorLinkProfileMenuItem.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment