# jetpack/16.2/modules/simple-payments.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 16.2. 18 lines.

- Page: https://pluginprobe.com/plugins/jetpack/16.2/code/modules/simple-payments.php
- Raw: https://pluginprobe.com/plugins/jetpack/16.2/raw/modules/simple-payments.php
- Modified: 2025-11-24T17:00:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetpack/16.2/code/modules/simple-payments.php#L10-L20`.

```php
<?php
/**
 * Simple Payments module loader.
 *
 * This file is not a typical module; the file is required from module-extras.php and thus always required
 * when the site is connected to WordPress.com. See $connected_tools in module-extras.php.
 *
 * @package automattic/jetpack
 */

use Automattic\Jetpack\Paypal_Payments\Simple_Payments;

if ( ! defined( 'ABSPATH' ) ) {
	exit( 0 );
}

Simple_Payments::get_instance();

```
