-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathFrmSquareLiteApiHelper.php
More file actions
35 lines (32 loc) · 987 Bytes
/
FrmSquareLiteApiHelper.php
File metadata and controls
35 lines (32 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
/**
* This file exists for backward compatibility with the Payments Submodule.
* Without these functions the Authorize.Net add on will trigger fatal errors.
*/
class FrmSquareLiteApiHelper {
/**
* The payments submodule calls this function.
* This function exists so payments can be refunded when the Stripe add-on or Authorize.Net is active.
*
* @param int $payment_id
*
* @return bool
*/
public static function refund_payment( $payment_id ) {
return FrmSquareLiteConnectHelper::refund_payment( $payment_id );
}
/**
* The payments submodule calls this function.
* This function exists so subscriptions can be cancelled when the Stripe add-on or Authorize.Net is active.
*
* @param string $sub_id
*
* @return bool
*/
public static function cancel_subscription( $sub_id ) {
return FrmSquareLiteConnectHelper::cancel_subscription( $sub_id );
}
}