Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2895530
DifferentialRevertPlanField.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
3 KB
Referenced Files
None
Subscribers
None
DifferentialRevertPlanField.php
View Options
<?php
final
class
DifferentialRevertPlanField
extends
DifferentialStoredCustomField
{
public
function
getFieldKey
(
)
{
return
'phabricator:revert-plan'
;
}
public
function
getFieldKeyForConduit
(
)
{
return
'revertPlan'
;
}
public
function
getFieldName
(
)
{
return
pht
(
'Revert Plan'
)
;
}
public
function
getFieldDescription
(
)
{
return
pht
(
'Instructions for reverting/undoing this change.'
)
;
}
public
function
shouldDisableByDefault
(
)
{
return
true
;
}
public
function
shouldAppearInPropertyView
(
)
{
return
true
;
}
public
function
renderPropertyViewLabel
(
)
{
return
$this
->
getFieldName
(
)
;
}
public
function
getStyleForPropertyView
(
)
{
return
'block'
;
}
public
function
getIconForPropertyView
(
)
{
return
PHUIPropertyListView
::
ICON_TESTPLAN
;
}
public
function
renderPropertyViewValue
(
array
$handles
)
{
if
(
!
strlen
(
$this
->
getValue
(
)
)
)
{
return
null
;
}
return
new
PHUIRemarkupView
(
$this
->
getViewer
(
)
,
$this
->
getValue
(
)
)
;
}
public
function
shouldAppearInGlobalSearch
(
)
{
return
true
;
}
public
function
updateAbstractDocument
(
PhabricatorSearchAbstractDocument
$document
)
{
if
(
strlen
(
$this
->
getValue
(
)
)
)
{
$document
->
addField
(
'rvrt'
,
$this
->
getValue
(
)
)
;
}
}
public
function
shouldAppearInEditView
(
)
{
return
true
;
}
public
function
shouldAppearInApplicationTransactions
(
)
{
return
true
;
}
public
function
getOldValueForApplicationTransactions
(
)
{
return
$this
->
getValue
(
)
;
}
public
function
getNewValueForApplicationTransactions
(
)
{
return
$this
->
getValue
(
)
;
}
public
function
readValueFromRequest
(
AphrontRequest
$request
)
{
$this
->
setValue
(
$request
->
getStr
(
$this
->
getFieldKey
(
)
)
)
;
}
public
function
renderEditControl
(
array
$handles
)
{
return
id
(
new
PhabricatorRemarkupControl
(
)
)
->
setUser
(
$this
->
getViewer
(
)
)
->
setName
(
$this
->
getFieldKey
(
)
)
->
setValue
(
$this
->
getValue
(
)
)
->
setLabel
(
$this
->
getFieldName
(
)
)
;
}
public
function
getApplicationTransactionTitle
(
PhabricatorApplicationTransaction
$xaction
)
{
$author_phid
=
$xaction
->
getAuthorPHID
(
)
;
$old
=
$xaction
->
getOldValue
(
)
;
$new
=
$xaction
->
getNewValue
(
)
;
return
pht
(
'%s updated the revert plan for this revision.'
,
$xaction
->
renderHandleLink
(
$author_phid
)
)
;
}
public
function
getApplicationTransactionTitleForFeed
(
PhabricatorApplicationTransaction
$xaction
)
{
$object_phid
=
$xaction
->
getObjectPHID
(
)
;
$author_phid
=
$xaction
->
getAuthorPHID
(
)
;
$old
=
$xaction
->
getOldValue
(
)
;
$new
=
$xaction
->
getNewValue
(
)
;
return
pht
(
'%s updated the revert plan for %s.'
,
$xaction
->
renderHandleLink
(
$author_phid
)
,
$xaction
->
renderHandleLink
(
$object_phid
)
)
;
}
public
function
getApplicationTransactionHasChangeDetails
(
PhabricatorApplicationTransaction
$xaction
)
{
return
true
;
}
public
function
getApplicationTransactionChangeDetails
(
PhabricatorApplicationTransaction
$xaction
,
PhabricatorUser
$viewer
)
{
return
$xaction
->
renderTextCorpusChangeDetails
(
$viewer
,
$xaction
->
getOldValue
(
)
,
$xaction
->
getNewValue
(
)
)
;
}
public
function
getApplicationTransactionRemarkupBlocks
(
PhabricatorApplicationTransaction
$xaction
)
{
return
array
(
$xaction
->
getNewValue
(
)
)
;
}
public
function
shouldAppearInConduitDictionary
(
)
{
return
true
;
}
public
function
shouldAppearInConduitTransactions
(
)
{
return
true
;
}
protected
function
newConduitEditParameterType
(
)
{
return
new
ConduitStringParameterType
(
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 21:35 (6 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1129009
Default Alt Text
DifferentialRevertPlanField.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment