Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1519265
PhabricatorProjectManageProfilePanel.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
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
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
false
;
}
public
function
canMakeDefault
(
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
)
{
$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
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jul 14, 3:05 AM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
352333
Default Alt Text
PhabricatorProjectManageProfilePanel.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment