Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92761090
DifferentialManiphestTasksField.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
Sat, Nov 23, 12:20
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 12:20 (2 d)
Engine
blob
Format
Raw Data
Handle
22499289
Attached To
rPH Phabricator
DifferentialManiphestTasksField.php
View Options
<?php
final
class
DifferentialManiphestTasksField
extends
DifferentialCoreCustomField
{
public
function
getFieldKey
()
{
return
'differential:maniphest-tasks'
;
}
public
function
getFieldKeyForConduit
()
{
return
'maniphestTaskPHIDs'
;
}
public
function
canDisableField
()
{
return
false
;
}
public
function
shouldAppearInEditView
()
{
return
false
;
}
public
function
getFieldName
()
{
return
pht
(
'Maniphest Tasks'
);
}
public
function
getFieldDescription
()
{
return
pht
(
'Lists associated tasks.'
);
}
public
function
shouldAppearInPropertyView
()
{
return
true
;
}
public
function
renderPropertyViewLabel
()
{
return
$this
->
getFieldName
();
}
protected
function
readValueFromRevision
(
DifferentialRevision
$revision
)
{
if
(!
$revision
->
getPHID
())
{
return
array
();
}
return
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$revision
->
getPHID
(),
DifferentialRevisionHasTaskEdgeType
::
EDGECONST
);
}
public
function
getApplicationTransactionType
()
{
return
PhabricatorTransactions
::
TYPE_EDGE
;
}
public
function
getApplicationTransactionMetadata
()
{
return
array
(
'edge:type'
=>
DifferentialRevisionHasTaskEdgeType
::
EDGECONST
,
);
}
public
function
getNewValueForApplicationTransactions
()
{
$edges
=
array
();
foreach
(
$this
->
getValue
()
as
$phid
)
{
$edges
[
$phid
]
=
$phid
;
}
return
array
(
'='
=>
$edges
);
}
public
function
getRequiredHandlePHIDsForPropertyView
()
{
return
$this
->
getValue
();
}
public
function
renderPropertyViewValue
(
array
$handles
)
{
return
$this
->
renderHandleList
(
$handles
);
}
public
function
shouldAppearInCommitMessage
()
{
return
true
;
}
public
function
shouldAllowEditInCommitMessage
()
{
return
true
;
}
public
function
getCommitMessageLabels
()
{
return
array
(
'Maniphest Task'
,
'Maniphest Tasks'
,
);
}
public
function
parseValueFromCommitMessage
(
$value
)
{
return
$this
->
parseObjectList
(
$value
,
array
(
ManiphestTaskPHIDType
::
TYPECONST
,
));
}
public
function
getRequiredHandlePHIDsForCommitMessage
()
{
return
$this
->
getRequiredHandlePHIDsForPropertyView
();
}
public
function
renderCommitMessageValue
(
array
$handles
)
{
return
$this
->
renderObjectList
(
$handles
);
}
public
function
getProTips
()
{
return
array
(
pht
(
'Write "%s" in your summary to automatically close the '
.
'corresponding task when this change lands.'
,
'Fixes T123'
),
);
}
}
Event Timeline
Log In to Comment