paypal-payment-buttons.php
26 lines
| 1 | <?php |
| 2 | /** |
| 3 | * PayPal Payment Buttons block. |
| 4 | * |
| 5 | * @since 14.9 |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | use Automattic\Jetpack\PaypalPayments\PayPal_Payment_Buttons; |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit( 0 ); |
| 14 | } |
| 15 | |
| 16 | // Register the block. |
| 17 | add_action( 'init', array( PayPal_Payment_Buttons::class, 'register_block' ), 9 ); |
| 18 | |
| 19 | // Load scripts for the editing interface |
| 20 | add_action( 'enqueue_block_editor_assets', array( PayPal_Payment_Buttons::class, 'load_editor_scripts' ), 9 ); |
| 21 | |
| 22 | // Load styles in the editor iframe context |
| 23 | if ( is_admin() ) { |
| 24 | add_action( 'enqueue_block_assets', array( PayPal_Payment_Buttons::class, 'load_editor_styles' ), 9 ); |
| 25 | } |
| 26 |