Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98129341
PhabricatorPeopleDetailsProfilePanel.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
Fri, Jan 10, 02:55
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 02:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23511193
Attached To
rPH Phabricator
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
(
PhabricatorProfilePanelConfiguration
$config
)
{
$name
=
$config
->
getPanelProperty
(
'name'
);
if
(
strlen
(
$name
))
{
return
$name
;
}
return
$this
->
getDefaultName
();
}
public
function
buildEditEngineFields
(
PhabricatorProfilePanelConfiguration
$config
)
{
return
array
(
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'name'
)
->
setLabel
(
pht
(
'Name'
))
->
setPlaceholder
(
$this
->
getDefaultName
())
->
setValue
(
$config
->
getPanelProperty
(
'name'
)),
);
}
protected
function
newNavigationMenuItems
(
PhabricatorProfilePanelConfiguration
$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
,
);
}
}
Event Timeline
Log In to Comment