Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91332544
PhabricatorProjectManageProfileMenuItem.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
Sun, Nov 10, 02:13
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Nov 12, 02:13 (2 d)
Engine
blob
Format
Raw Data
Handle
22244622
Attached To
rPH Phabricator
PhabricatorProjectManageProfileMenuItem.php
View Options
<?php
final
class
PhabricatorProjectManageProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'project.manage'
;
public
function
getMenuItemTypeName
()
{
return
pht
(
'Manage Project'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Manage'
);
}
public
function
canHideMenuItem
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
false
;
}
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
,
);
}
}
Event Timeline
Log In to Comment