Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93227182
PhortuneCartImplementation.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
Wed, Nov 27, 04:25
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 29, 04:25 (2 d)
Engine
blob
Format
Raw Data
Handle
22597930
Attached To
rPH Phabricator
PhortuneCartImplementation.php
View Options
<?php
abstract
class
PhortuneCartImplementation
extends
Phobject
{
/**
* Load implementations for a given set of carts.
*
* Note that this method should return a map using the original keys to
* identify which implementation corresponds to which cart.
*/
abstract
public
function
loadImplementationsForCarts
(
PhabricatorUser
$viewer
,
array
$carts
);
abstract
public
function
getName
(
PhortuneCart
$cart
);
abstract
public
function
getCancelURI
(
PhortuneCart
$cart
);
abstract
public
function
getDoneURI
(
PhortuneCart
$cart
);
public
function
getDescription
(
PhortuneCart
$cart
)
{
return
null
;
}
public
function
getDoneActionName
(
PhortuneCart
$cart
)
{
return
pht
(
'Return to Application'
);
}
public
function
assertCanCancelOrder
(
PhortuneCart
$cart
)
{
switch
(
$cart
->
getStatus
())
{
case
PhortuneCart
::
STATUS_PURCHASED
:
throw
new
Exception
(
pht
(
'This order can not be cancelled because it has already been '
.
'completed.'
));
break
;
}
}
public
function
assertCanRefundOrder
(
PhortuneCart
$cart
)
{
return
;
}
abstract
public
function
willCreateCart
(
PhabricatorUser
$viewer
,
PhortuneCart
$cart
);
}
Event Timeline
Log In to Comment