Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107809350
PhabricatorProjectManageProfilePanel.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
Thu, Apr 10, 22:40
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Apr 12, 22:40 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25482096
Attached To
rPH Phabricator
PhabricatorProjectManageProfilePanel.php
View Options
<?php
final
class
PhabricatorProjectManageProfilePanel
extends
PhabricatorProfilePanel
{
const
PANELKEY
=
'project.manage'
;
public
function
getPanelTypeName
()
{
return
pht
(
'Manage Project'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Manage'
);
}
public
function
canHidePanel
(
PhabricatorProfilePanelConfiguration
$config
)
{
return
false
;
}
public
function
canMakeDefault
(
PhabricatorProfilePanelConfiguration
$config
)
{
return
true
;
}
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
)
{
$project
=
$config
->
getProfileObject
();
$id
=
$project
->
getID
();
$name
=
$this
->
getDisplayName
(
$config
);
$icon
=
'fa-gears'
;
$href
=
"/project/manage/{$id}/"
;
$item
=
$this
->
newItem
()
->
setHref
(
$href
)
->
setName
(
$name
)
->
setIcon
(
$icon
);
return
array
(
$item
,
);
}
}
Event Timeline
Log In to Comment