Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F539552
PhabricatorProjectWorkboardProfileMenuItem.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
PhabricatorProjectWorkboardProfileMenuItem.php
View Options
<?php
final
class
PhabricatorProjectWorkboardProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'project.workboard'
;
public
function
getMenuItemTypeName
()
{
return
pht
(
'Project Workboard'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Workboard'
);
}
public
function
getMenuItemTypeIcon
()
{
return
'fa-columns'
;
}
public
function
canMakeDefault
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
true
;
}
public
function
shouldEnableForObject
(
$object
)
{
$viewer
=
$this
->
getViewer
();
// Workboards are only available if Maniphest is installed.
$class
=
'PhabricatorManiphestApplication'
;
if
(!
PhabricatorApplication
::
isClassInstalledForViewer
(
$class
,
$viewer
))
{
return
false
;
}
return
true
;
}
public
function
getDisplayName
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$name
=
$config
->
getMenuItemProperty
(
'name'
);
if
(
phutil_nonempty_string
(
$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
newMenuItemViewList
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$project
=
$config
->
getProfileObject
();
$id
=
$project
->
getID
();
$uri
=
$project
->
getWorkboardURI
();
$name
=
$this
->
getDisplayName
(
$config
);
$item
=
$this
->
newItemView
()
->
setURI
(
$uri
)
->
setName
(
$name
)
->
setIcon
(
'fa-columns'
);
return
array
(
$item
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:13 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
101629
Default Alt Text
PhabricatorProjectWorkboardProfileMenuItem.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment