-
Notifications
You must be signed in to change notification settings - Fork 2
/
pronamic-pay-adyen.php
65 lines (60 loc) · 1.49 KB
/
pronamic-pay-adyen.php
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
<?php
/**
* Plugin Name: Pronamic Pay Adyen Add-On
* Plugin URI: https://www.pronamic.eu/plugins/pronamic-pay-adyen/
* Description: Extend the Pronamic Pay plugin with the Adyen gateway to receive payments with Adyen through a variety of WordPress plugins.
*
* Version: 4.5.2
* Requires at least: 5.9
* Requires PHP: 7.4
*
* Author: Pronamic
* Author URI: https://www.pronamic.eu/
*
* Text Domain: pronamic-pay-adyen
* Domain Path: /languages/
*
* License: GPL-3.0-or-later
*
* Requires Plugins: pronamic-ideal
* Depends: wp-pay/core
*
* GitHub URI: https://github.com/wp-pay-gateways/adyen
*
* @author Pronamic <info@pronamic.eu>
* @copyright 2005-2024 Pronamic
* @license GPL-3.0-or-later
* @package Pronamic\WordPress\Pay\Gateways\Adyen
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Autoload.
*/
require_once __DIR__ . '/vendor/autoload_packages.php';
/**
* Gateway.
*/
add_filter(
'pronamic_pay_gateways',
function ( $gateways ) {
$gateways[] = new \Pronamic\WordPress\Pay\Gateways\Adyen\Integration(
[
'id' => 'adyen',
'name' => 'Adyen',
'mode' => 'live',
'dashboard_url' => 'https://ca-live.adyen.com/ca/ca/login.shtml',
]
);
$gateways[] = new \Pronamic\WordPress\Pay\Gateways\Adyen\Integration(
[
'id' => 'adyen-test',
'name' => 'Adyen - Test',
'mode' => 'test',
'dashboard_url' => 'https://ca-test.adyen.com/ca/ca/login.shtml',
]
);
return $gateways;
}
);