Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F445575
PhabricatorPeopleDetailsProfilePanel.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorPeopleDetailsProfilePanel.php
View Options
<?php
final
class
PhabricatorPeopleDetailsProfilePanel
extends
PhabricatorProfilePanel
{
const
PANELKEY
=
'people.details'
;
public
function
getPanelTypeName
()
{
return
pht
(
'User Details'
);
}
private
function
getDefaultName
()
{
return
pht
(
'User Details'
);
}
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
->
getMenuProperty
(
'name'
)),
);
}
protected
function
newNavigationMenuItems
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$user
=
$config
->
getProfileObject
();
$picture
=
$user
->
getProfileImageURI
();
$name
=
$user
->
getUsername
();
$href
=
urisprintf
(
'/p/%s/'
,
$user
->
getUsername
());
$item
=
$this
->
newItem
()
->
setHref
(
$href
)
->
setName
(
$name
)
->
setProfileImage
(
$picture
);
return
array
(
$item
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 1:37 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
65734
Default Alt Text
PhabricatorPeopleDetailsProfilePanel.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment