| 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 |
|