-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpronamic-pay-doneren-met-mollie.php
More file actions
103 lines (91 loc) · 2.39 KB
/
pronamic-pay-doneren-met-mollie.php
File metadata and controls
103 lines (91 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
/**
* Plugin Name: Pronamic Pay doneren met Mollie
* Plugin URI: https://www.pronamic.eu/plugins/pronamic-pay-doneren-met-mollie/
* Description: A modern WordPress block-based plugin for creating flexible and customizable donation forms powered by Mollie.
*
* Version: 1.5.0
* Requires at least: 6.6
* Requires PHP: 8.2
*
* Author: Pronamic
* Author URI: https://www.pronamic.eu/
*
* Text Domain: pronamic-pay-doneren-met-mollie
* Domain Path: /languages/
*
* Provides: wp-pay/core
*
* License: GPL-2.0-or-later
*
* GitHub URI: https://github.com/pronamic/pronamic-pay-doneren-met-mollie
*
* @author Pronamic <info@pronamic.eu>
* @copyright 2005-2026 Pronamic
* @license GPL-3.0-or-later
* @package Pronamic\WordPress\Pay
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Autoload.
*/
require_once __DIR__ . '/vendor/autoload_packages.php';
/**
* Bootstrap.
*/
add_action(
'init',
function () {
/**
* Script translations.
*
* @link https://github.com/pronamic/pronamic-pay-payments-experimental/issues/42
*/
$block_types = array_filter(
WP_Block_Type_Registry::get_instance()->get_all_registered(),
function ( $block_type ) {
return isset( $block_type->category ) && 'pronamic-forms' === $block_type->category;
}
);
foreach ( $block_types as $block_type ) {
foreach ( $block_type->editor_script_handles as $handle ) {
\wp_set_script_translations(
$handle,
'pronamic-pay-doneren-met-mollie',
__DIR__ . '/languages'
);
}
}
},
50
);
\Pronamic\WordPress\Pay\Plugin::instance(
[
'file' => __FILE__,
'action_scheduler' => __DIR__ . '/packages/woocommerce/action-scheduler/action-scheduler.php',
'pronamic_service_url' => 'https://api.wp-pay.org/wp-json/pronamic-pay/v1/payments',
]
);
add_filter(
'pronamic_pay_modules',
function ( $modules ) {
$modules[] = 'subscriptions';
return $modules;
}
);
add_filter(
'pronamic_pay_gateways',
function ( $gateways ) {
$gateways[] = new \Pronamic\WordPress\Pay\Gateways\Mollie\Integration(
[
'manual_url' => \__( 'https://www.pronamicpay.com/en/manuals/how-to-connect-mollie-to-wordpress-with-pronamic-pay/', 'pronamic-pay-doneren-met-mollie' ),
]
);
return $gateways;
}
);
\Pronamic\PronamicPayDefaultPaymentMethods\Plugin::instance();
$pronamic_forms_plugin = new \Pronamic\PronamicForms\Plugin();
$pronamic_forms_plugin->setup();