Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2893764
DifferentialTasksCommitMessageField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
DifferentialTasksCommitMessageField.php
View Options
<?php
final
class
DifferentialTasksCommitMessageField
extends
DifferentialCommitMessageField
{
const
FIELDKEY
=
'maniphestTaskPHIDs'
;
public
function
getFieldName
(
)
{
return
pht
(
'Maniphest Tasks'
)
;
}
public
function
getFieldOrder
(
)
{
return
8000
;
}
public
function
getFieldAliases
(
)
{
return
array
(
'Task'
,
'Tasks'
,
'Maniphest Task'
,
)
;
}
public
function
isTemplateField
(
)
{
return
false
;
}
public
function
parseFieldValue
(
$value
)
{
return
$this
->
parseObjectList
(
$value
,
array
(
ManiphestTaskPHIDType
::
TYPECONST
,
)
)
;
}
public
function
readFieldValueFromObject
(
DifferentialRevision
$revision
)
{
if
(
!
$revision
->
getPHID
(
)
)
{
return
array
(
)
;
}
$projects
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$revision
->
getPHID
(
)
,
DifferentialRevisionHasTaskEdgeType
::
EDGECONST
)
;
$projects
=
array_reverse
(
$projects
)
;
return
$projects
;
}
public
function
readFieldValueFromConduit
(
$value
)
{
return
$this
->
readStringListFieldValueFromConduit
(
$value
)
;
}
public
function
renderFieldValue
(
$value
)
{
return
$this
->
renderHandleList
(
$value
)
;
}
public
function
getFieldTransactions
(
$value
)
{
return
array
(
array
(
'type'
=>
'tasks.set'
,
'value'
=>
$value
,
)
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 19:02 (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127648
Default Alt Text
DifferentialTasksCommitMessageField.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment