| 1 |
<?php |
| 2 |
// @codingStandardsIgnoreFile |
| 3 |
/** |
| 4 |
* s2Member's PayPal Webhook handler (REST). |
| 5 |
* |
| 6 |
* @package s2Member\PayPal |
| 7 |
* @since 260112 |
| 8 |
*/ |
| 9 |
if(!defined('WPINC')) |
| 10 |
exit('Do not access this file directly.'); |
| 11 |
|
| 12 |
if(!class_exists('c_ws_plugin__s2member_paypal_webhook')) |
| 13 |
{ |
| 14 |
class c_ws_plugin__s2member_paypal_webhook |
| 15 |
{ |
| 16 |
/** |
| 17 |
* @attaches-to ``add_action('init');`` |
| 18 |
*/ |
| 19 |
public static function paypal_webhook() |
| 20 |
{ |
| 21 |
if(!empty($_REQUEST['s2member_paypal_webhook'])) |
| 22 |
c_ws_plugin__s2member_paypal_webhook_in::paypal_webhook(); |
| 23 |
} |
| 24 |
} |
| 25 |
} |
| 26 |
|