PluginProbe
SureDonation – Donation Forms, Fundraising Campaigns & Donor Management / 1.6.1
SureDonation – Donation Forms, Fundraising Campaigns & Donor Management v1.6.1
1.6.1 1.6.0 1.5.1 1.5.0 1.4.0 1.3.0 trunk 0.0.1 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0
← All changes | suredonation.php +8 -4 1.0.0 → 1.6.1 View file →
@@ -2,14 +2,14 @@
2 2 /**
3 3 * Plugin Name: SureDonation
4 4 * Plugin URI: https://suredonation.com
5 5 * Description: A powerful donation management plugin for WordPress with campaign tracking, payment processing, and donor management.
6 - * Version: 1.0.0
6 + * Version: 1.6.1
7 7 * Author: SureDonation
8 8 * Text Domain: suredonation
9 9 * Domain Path: /languages
10 10 * Requires at least: 6.4
11 - * Requires PHP: 7.4
11 + * Requires PHP: 8.0
12 12 * License: GPL v2 or later
13 13 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
14 14 *
15 15 * @package SureDonation
@@ -22,10 +22,9 @@
22 22
23 23 /**
24 24 * Define plugin constants.
25 25 */
26 -// Plugin version. Keep in sync with the header above and package.json (drives release tagging).
27 -define( 'SUREDONATION_VER', '1.0.0' );
26 +define( 'SUREDONATION_VER', '1.6.1' );
28 27 define( 'SUREDONATION_FILE', __FILE__ );
29 28 define( 'SUREDONATION_DIR', plugin_dir_path( __FILE__ ) );
30 29 define( 'SUREDONATION_URL', plugin_dir_url( __FILE__ ) );
31 30 define( 'SUREDONATION_BASENAME', plugin_basename( __FILE__ ) );
@@ -45,8 +44,13 @@
45 44 /**
46 45 * Abilities API constants.
47 46 */
48 47 define( 'SUREDONATION_ABILITY_API_NAMESPACE', 'suredonation/' );
48 +
49 +/**
50 + * OttoKit (formerly SureTriggers) integration base URL.
51 + */
52 +define( 'SUREDONATION_SURETRIGGERS_INTEGRATION_BASE_URL', 'https://app.ottokit.com/' );
49 53
50 54 /**
51 55 * Load the plugin loader.
52 56 */