Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91348671
DifferentialBlameRevisionField.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
Sun, Nov 10, 05:37
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Nov 12, 05:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22247364
Attached To
rPH Phabricator
DifferentialBlameRevisionField.php
View Options
<?php
final
class
DifferentialBlameRevisionField
extends
DifferentialStoredCustomField
{
public
function
getFieldKey
()
{
return
'phabricator:blame-revision'
;
}
public
function
getFieldKeyForConduit
()
{
return
'blameRevision'
;
}
public
function
getFieldName
()
{
return
pht
(
'Blame Revision'
);
}
public
function
getFieldDescription
()
{
return
pht
(
'Stores a reference to what this fixes.'
);
}
public
function
shouldDisableByDefault
()
{
return
true
;
}
public
function
shouldAppearInPropertyView
()
{
return
true
;
}
public
function
renderPropertyViewLabel
()
{
return
$this
->
getFieldName
();
}
public
function
renderPropertyViewValue
(
array
$handles
)
{
if
(!
strlen
(
$this
->
getValue
()))
{
return
null
;
}
return
$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
AphrontFormTextControl
())
->
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 blame revision 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 blame revision for %s.'
,
$xaction
->
renderHandleLink
(
$author_phid
),
$xaction
->
renderHandleLink
(
$object_phid
));
}
public
function
shouldAppearInCommitMessage
()
{
return
true
;
}
public
function
shouldAppearInConduitDictionary
()
{
return
true
;
}
public
function
shouldAppearInConduitTransactions
()
{
return
true
;
}
protected
function
newConduitEditParameterType
()
{
return
new
ConduitStringParameterType
();
}
}
Event Timeline
Log In to Comment