Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91092868
FundInitiativeRefundTransaction.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
Thu, Nov 7, 19:57
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Nov 9, 19:57 (2 d)
Engine
blob
Format
Raw Data
Handle
22195186
Attached To
rPH Phabricator
FundInitiativeRefundTransaction.php
View Options
<?php
final
class
FundInitiativeRefundTransaction
extends
FundInitiativeTransactionType
{
const
TRANSACTIONTYPE
=
'fund:refund'
;
public
function
generateOldValue
(
$object
)
{
return
null
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$amount
=
$this
->
getMetadataValue
(
FundInitiativeTransaction
::
PROPERTY_AMOUNT
);
$amount
=
PhortuneCurrency
::
newFromString
(
$amount
);
$total
=
$object
->
getTotalAsCurrency
()->
subtract
(
$amount
);
$object
->
setTotalAsCurrency
(
$total
);
}
public
function
applyExternalEffects
(
$object
,
$value
)
{
$backer
=
id
(
new
FundBackerQuery
())
->
setViewer
(
$this
->
getActor
())
->
withPHIDs
(
array
(
$value
))
->
executeOne
();
if
(!
$backer
)
{
throw
new
Exception
(
pht
(
'Unable to load %s!'
,
'FundBacker'
));
}
$subx
=
array
();
$amount
=
$this
->
getMetadataValue
(
FundInitiativeTransaction
::
PROPERTY_AMOUNT
);
$subx
[]
=
id
(
new
FundBackerTransaction
())
->
setTransactionType
(
FundBackerStatusTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$amount
);
$content_source
=
$this
->
getEditor
()->
getContentSource
();
$editor
=
id
(
new
FundBackerEditor
())
->
setActor
(
$this
->
getActor
())
->
setContentSource
(
$content_source
)
->
setContinueOnMissingFields
(
true
)
->
setContinueOnNoEffect
(
true
);
$editor
->
applyTransactions
(
$backer
,
$subx
);
}
public
function
getTitle
()
{
$amount
=
$this
->
getMetadataValue
(
FundInitiativeTransaction
::
PROPERTY_AMOUNT
);
$amount
=
PhortuneCurrency
::
newFromString
(
$amount
);
$backer_phid
=
$this
->
getMetadataValue
(
FundInitiativeTransaction
::
PROPERTY_BACKER
);
return
pht
(
'%s refunded %s to %s.'
,
$this
->
renderAuthor
(),
$amount
->
formatForDisplay
(),
$this
->
renderHandle
(
$backer_phid
));
}
public
function
getTitleForFeed
()
{
$amount
=
$this
->
getMetadataValue
(
FundInitiativeTransaction
::
PROPERTY_AMOUNT
);
$amount
=
PhortuneCurrency
::
newFromString
(
$amount
);
$backer_phid
=
$this
->
getMetadataValue
(
FundInitiativeTransaction
::
PROPERTY_BACKER
);
return
pht
(
'%s refunded %s to %s for %s.'
,
$this
->
renderAuthor
(),
$amount
->
formatForDisplay
(),
$this
->
renderHandle
(
$backer_phid
),
$this
->
renderObject
());
}
}
Event Timeline
Log In to Comment