Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101060045
PhabricatorHomeManageProfileMenuItem.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
Wed, Feb 5, 08:01
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 7, 08:01 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24084235
Attached To
rPH Phabricator
PhabricatorHomeManageProfileMenuItem.php
View Options
<?php
final
class
PhabricatorHomeManageProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'home.manage.menu'
;
public
function
getMenuItemTypeName
()
{
return
pht
(
'Manage Home Menu'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Manage'
);
}
public
function
canHideMenuItem
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
false
;
}
public
function
canMakeDefault
(
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
)
{
$viewer
=
$this
->
getViewer
();
if
(
$viewer
->
isLoggedIn
())
{
$admin
=
$viewer
->
getIsAdmin
();
$name
=
$this
->
getDisplayName
(
$config
);
$icon
=
'fa-pencil'
;
$href
=
'/home/menu/personal/item/configure/'
;
if
(
$admin
)
{
$href
=
'/home/menu/'
;
}
$item
=
$this
->
newItem
()
->
setHref
(
$href
)
->
setName
(
$name
)
->
setIcon
(
$icon
);
}
return
array
(
$item
,
);
}
}
Event Timeline
Log In to Comment