2022-06-16 14:01:47 +02:00
|
|
|
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
|
2023-04-26 17:39:43 +02:00
|
|
|
|
|
|
|
|
// phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files.
|
|
|
|
|
|
2025-08-27 08:44:30 +02:00
|
|
|
use Automattic\Jetpack\Paypal_Payments\Simple_Payments;
|
2019-11-15 23:26:29 +01:00
|
|
|
|
2023-09-26 10:24:36 +02:00
|
|
|
// Disable direct access/execution to/of the widget code.
|
2019-11-15 23:26:29 +01:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2025-02-28 08:42:11 +01:00
|
|
|
exit( 0 );
|
2019-11-15 23:26:29 +01:00
|
|
|
}
|
|
|
|
|
|
2025-08-27 08:44:30 +02:00
|
|
|
add_action( 'widgets_init', array( Simple_Payments::class, 'register_widget_simple_payments' ) );
|