Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98064283
PhabricatorProjectWorkboardProfilePanel.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, Jan 9, 06:14
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 06:14 (1 d, 11 h)
Engine
blob
Format
Raw Data
Handle
23491789
Attached To
rPH Phabricator
PhabricatorProjectWorkboardProfilePanel.php
View Options
<?php
final
class
PhabricatorProjectWorkboardProfilePanel
extends
PhabricatorProfilePanel
{
const
PANELKEY
=
'project.workboard'
;
public
function
getPanelTypeName
()
{
return
pht
(
'Project Workboard'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Workboard'
);
}
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
(
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
();
$has_workboard
=
$project
->
getHasWorkboard
();
$id
=
$project
->
getID
();
$href
=
"/project/board/{$id}/"
;
$name
=
$this
->
getDisplayName
(
$config
);
$item
=
$this
->
newItem
()
->
setHref
(
$href
)
->
setName
(
$name
)
->
setDisabled
(!
$has_workboard
)
->
setIcon
(
'fa-columns'
);
return
array
(
$item
,
);
}
}
Event Timeline
Log In to Comment