PluginProbe
Pronamic Client / 2.4.1
Pronamic Client v2.4.1
2.4.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.4.0 1.5.0 1.6.0 1.6.1 1.7.0 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 All 54 releases
pronamic-client / pronamic-client.php

pronamic-client.php in Pronamic Client 2.4.1, at pronamic-client.php

44 lines 920 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Pronamic Client
4 * Plugin URI: https://wp.pronamic.directory/plugins/pronamic-client/
5 * Description: WordPress plugin for Pronamic clients.
6 *
7 * Version: 2.4.1
8 * Requires at least: 3.0
9 * Requires PHP: 7.4
10 *
11 * Author: Pronamic
12 * Author URI: https://www.pronamic.eu/
13 *
14 * Text Domain: pronamic-client
15 * Domain Path: /languages/
16 *
17 * License: GPL-2.0-or-later
18 *
19 * GitHub URI: https://github.com/pronamic/wp-pronamic-client
20 *
21 * @author Pronamic <info@pronamic.eu>
22 * @copyright 2005-2024 Pronamic
23 * @license GPL-2.0-or-later
24 * @package PronamicClient
25 */
26
27 if ( ! defined( 'ABSPATH' ) ) {
28 exit;
29 }
30
31 /**
32 * Autoload.
33 */
34 require __DIR__ . '/vendor/autoload_packages.php';
35
36 /**
37 * Bootstrap
38 */
39 \Pronamic\WordPress\PronamicClient\Plugin::get_instance( __FILE__ );
40
41 \Pronamic\WordPress\Updater\Plugin::instance()->setup();
42
43 \Pronamic\MollieUserAgent\Plugin::instance()->setup();
44