| 1 |
<?php |
| 2 |
/** |
| 3 |
* Simple Payments module loader. |
| 4 |
* |
| 5 |
* This file is not a typical module; the file is required from module-extras.php and thus always required |
| 6 |
* when the site is connected to WordPress.com. See $connected_tools in module-extras.php. |
| 7 |
* |
| 8 |
* @package automattic/jetpack |
| 9 |
*/ |
| 10 |
|
| 11 |
use Automattic\Jetpack\Paypal_Payments\Simple_Payments; |
| 12 |
|
| 13 |
if ( ! defined( 'ABSPATH' ) ) { |
| 14 |
exit( 0 ); |
| 15 |
} |
| 16 |
|
| 17 |
Simple_Payments::get_instance(); |
| 18 |
|