# jetpack/16.3-a.1/modules/widgets/simple-payments.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 16.3-a.1. 13 lines.

- Page: https://pluginprobe.com/plugins/jetpack/16.3-a.1/code/modules/widgets/simple-payments.php
- Raw: https://pluginprobe.com/plugins/jetpack/16.3-a.1/raw/modules/widgets/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.3-a.1/code/modules/widgets/simple-payments.php#L10-L20`.

```php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName

// phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files.

use Automattic\Jetpack\Paypal_Payments\Simple_Payments;

// Disable direct access/execution to/of the widget code.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 0 );
}

add_action( 'widgets_init', array( Simple_Payments::class, 'register_widget_simple_payments' ) );

```
