Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90657530
PhabricatorPeopleBadgesProfileMenuItem.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, Nov 3, 15:36
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Nov 5, 15:36 (2 d)
Engine
blob
Format
Raw Data
Handle
22115633
Attached To
rPH Phabricator
PhabricatorPeopleBadgesProfileMenuItem.php
View Options
<?php
final
class
PhabricatorPeopleBadgesProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'people.badges'
;
public
function
getMenuItemTypeName
()
{
return
pht
(
'Badges'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Badges'
);
}
public
function
canHideMenuItem
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
true
;
}
public
function
getDisplayName
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$name
=
$config
->
getMenuItemProperty
(
'name'
);
if
(
strlen
(
$name
))
{
return
$name
;
}
return
$this
->
getDefaultName
();
}
public
function
buildEditEngineFields
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
array
(
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'name'
)
->
setLabel
(
pht
(
'Name'
))
->
setPlaceholder
(
$this
->
getDefaultName
())
->
setValue
(
$config
->
getMenuItemProperty
(
'name'
)),
);
}
protected
function
newNavigationMenuItems
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$user
=
$config
->
getProfileObject
();
$id
=
$user
->
getID
();
$item
=
$this
->
newItem
()
->
setHref
(
"/people/badges/{$id}/"
)
->
setName
(
$this
->
getDisplayName
(
$config
))
->
setIcon
(
'fa-trophy'
);
return
array
(
$item
,
);
}
}
Event Timeline
Log In to Comment