Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2889245
PhabricatorPeopleTasksProfileMenuItem.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorPeopleTasksProfileMenuItem.php
View Options
<?php
final
class
PhabricatorPeopleTasksProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'people.tasks'
;
public
function
getMenuItemTypeName
(
)
{
return
pht
(
'Tasks'
)
;
}
private
function
getDefaultName
(
)
{
return
pht
(
'Tasks'
)
;
}
public
function
canHideMenuItem
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
true
;
}
public
function
getDisplayName
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$name
=
$config
->
getMenuItemProperty
(
'name'
)
;
if
(
phutil_nonempty_string
(
$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
newMenuItemViewList
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$user
=
$config
->
getProfileObject
(
)
;
$id
=
$user
->
getID
(
)
;
$item
=
$this
->
newItemView
(
)
->
setURI
(
"/people/tasks/{$id}/"
)
->
setName
(
$this
->
getDisplayName
(
$config
)
)
->
setIcon
(
'fa-anchor'
)
;
return
array
(
$item
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 11:53 (4 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1124275
Default Alt Text
PhabricatorPeopleTasksProfileMenuItem.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment