Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97579185
PhortuneMerchantContactInfoTransaction.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, Jan 5, 10:31
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jan 7, 10:31 (2 d)
Engine
blob
Format
Raw Data
Handle
23430373
Attached To
rPH Phabricator
PhortuneMerchantContactInfoTransaction.php
View Options
<?php
final
class
PhortuneMerchantContactInfoTransaction
extends
PhortuneMerchantTransactionType
{
const
TRANSACTIONTYPE
=
'merchant:contactinfo'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getContactInfo
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setContactInfo
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s updated the merchant contact info.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s updated the merchant contact info for %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
public
function
hasChangeDetailView
()
{
return
true
;
}
public
function
getMailDiffSectionHeader
()
{
return
pht
(
'CHANGES TO MERCHANT CONTACT INFO'
);
}
public
function
newChangeDetailView
()
{
$viewer
=
$this
->
getViewer
();
return
id
(
new
PhabricatorApplicationTransactionTextDiffDetailView
())
->
setViewer
(
$viewer
)
->
setOldText
(
$this
->
getOldValue
())
->
setNewText
(
$this
->
getNewValue
());
}
public
function
newRemarkupChanges
()
{
$changes
=
array
();
$changes
[]
=
$this
->
newRemarkupChange
()
->
setOldValue
(
$this
->
getOldValue
())
->
setNewValue
(
$this
->
getNewValue
());
return
$changes
;
}
}
Event Timeline
Log In to Comment