Changeset 3333069
- Timestamp:
- 07/23/2025 04:35:26 PM (8 months ago)
- Location:
- engagebay-gravity-forms
- Files:
-
- 12 added
- 2 edited
-
tags/3.1.7 (added)
-
tags/3.1.7/engagebay-gravityforms.php (added)
-
tags/3.1.7/images (added)
-
tags/3.1.7/images/engagebay_logo.png (added)
-
tags/3.1.7/includes (added)
-
tags/3.1.7/includes/engagebay-gf-addon-activation-handler.php (added)
-
tags/3.1.7/includes/engagebay-gf-addon-api.php (added)
-
tags/3.1.7/includes/engagebay-gf-addon-form-handler.php (added)
-
tags/3.1.7/includes/engagebay-gf-addon-vars.php (added)
-
tags/3.1.7/js (added)
-
tags/3.1.7/js/engagebay.js (added)
-
tags/3.1.7/readme.txt (added)
-
trunk/engagebay-gravityforms.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
engagebay-gravity-forms/trunk/engagebay-gravityforms.php
r3332415 r3333069 4 4 Plugin URI: https://www.engagebay.com/gravity-forms 5 5 Description: EngageBay Gravity Forms integration plugin for gravity forms. Sync form entries to my website easily. 6 Version: 3.1. 66 Version: 3.1.7 7 7 Requires at least: 4.0 8 Requires Plugins: gravityforms9 8 Tested up to: 6.8.2 10 9 Author: EngageBay … … 16 15 $activated_plugins = apply_filters('active_plugins', get_option('active_plugins')); 17 16 18 if (!in_array('gravityforms/gravityforms.php', apply_filters('active_plugins', get_option('active_plugins')), true)) { 17 if (!function_exists('is_plugin_active')) { 18 require_once ABSPATH . 'wp-admin/includes/plugin.php'; 19 } 20 21 $is_gravity_forms_active = is_plugin_active('gravityforms/gravityforms.php') || is_plugin_active_for_network('gravityforms/gravityforms.php'); 22 23 if (!$is_gravity_forms_active) { 19 24 if (is_admin()) { 20 25 add_action('admin_notices', function () { … … 30 35 class EngageBayGFAddon extends GFAddOn 31 36 { 32 protected $_version = '3. 2';37 protected $_version = '3.1.7'; 33 38 protected $_min_gravityforms_version = '1.8.7'; 34 39 protected $_slug = 'engagebay'; -
engagebay-gravity-forms/trunk/readme.txt
r3332404 r3333069 4 4 Requires at least: 3.7 5 5 Tested up to: 6.8.2 6 Stable tag: 3.1. 66 Stable tag: 3.1.7 7 7 8 8 This plugin integrates Gravity Forms with EngageBay allowing form submissions to be automatically sent to user’s EngageBay account. Link any field type with EngageBay including custom fields. 9 9 10 10 EngageBay is an affordable, all-in-one CRM, marketing, sales and support software for growing companies. Learn more from [here](https://www.engagebay.com). 11 12 11 13 12 == Description == … … 97 96 98 97 == Changelog == 99 100 - Declared gravityforms as a required plugin using the Requires Plugins header for better dependency visibility 98 - Fixed: Gravity Forms detection now works correctly with both single-site and network-activated installations. 99 - Improved: Compatibility with WordPress multisite environments. 100 - Cleaned up plugin activation checks to avoid false error notices.
Note: See TracChangeset
for help on using the changeset viewer.