Changeset 3064003
- Timestamp:
- 04/03/2024 05:53:33 PM (2 years ago)
- Location:
- captchafox-for-forms
- Files:
-
- 6 added
- 14 edited
- 1 copied
-
tags/1.6.0 (copied) (copied from captchafox-for-forms/trunk)
-
tags/1.6.0/assets/img/avada-logo.png (added)
-
tags/1.6.0/captchafox.php (modified) (3 diffs)
-
tags/1.6.0/readme.txt (modified) (3 diffs)
-
tags/1.6.0/src/php/Initializer.php (modified) (2 diffs)
-
tags/1.6.0/src/php/Plugins/AvadaForms (added)
-
tags/1.6.0/src/php/Plugins/AvadaForms/Forms.php (added)
-
tags/1.6.0/src/php/Settings/Plugins.php (modified) (1 diff)
-
tags/1.6.0/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
tags/1.6.0/vendor/composer/autoload_static.php (modified) (1 diff)
-
tags/1.6.0/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/assets/img/avada-logo.png (added)
-
trunk/captchafox.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/php/Initializer.php (modified) (2 diffs)
-
trunk/src/php/Plugins/AvadaForms (added)
-
trunk/src/php/Plugins/AvadaForms/Forms.php (added)
-
trunk/src/php/Settings/Plugins.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_static.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
captchafox-for-forms/tags/1.6.0/captchafox.php
r3057882 r3064003 7 7 * Plugin Name: CaptchaFox for WordPress 8 8 * Description: GDPR compliant bot and spam protection with CaptchaFox. 9 * Version: 1. 5.09 * Version: 1.6.0 10 10 * Requires at least: 5.0 11 11 * Requires PHP: 7.0 … … 16 16 * 17 17 * WC requires at least: 3.0 18 * WC tested up to: 8. 618 * WC tested up to: 8.7 19 19 */ 20 20 … … 28 28 29 29 const CAPTCHAFOX_BASE_FILE = __FILE__; 30 const PLUGIN_VERSION = '1. 5.0';30 const PLUGIN_VERSION = '1.6.0'; 31 31 32 32 require 'vendor/autoload.php'; -
captchafox-for-forms/tags/1.6.0/readme.txt
r3057882 r3064003 1 1 === CaptchaFox for WordPress === 2 2 Contributors: scorialabs 3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, comments,block bots, form3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, block bots, form 4 4 Requires at least: 5.0 5 5 Tested up to: 6.5 6 6 Requires PHP: 7.0 7 Stable tag: 1. 5.07 Stable tag: 1.6.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 * Otter Blocks 51 51 * Fluent Forms 52 * Avada Forms 52 53 53 54 == Frequently Asked Questions == … … 78 79 == Changelog == 79 80 81 = 1.6.0 = 82 * Tested on WooCommerce 8.7 83 * Support Avada Forms 84 80 85 = 1.5.0 = 81 86 * Support Fluent Forms -
captchafox-for-forms/tags/1.6.0/src/php/Initializer.php
r3057882 r3064003 137 137 'class' => Plugins\FluentForms\Forms::class, 138 138 ], 139 [ 140 'group' => 'avada-forms', 141 'action' => 'form', 142 'plugins' => [ 'Avada' ], 143 'class' => Plugins\AvadaForms\Forms::class, 144 ], 139 145 ]; 140 146 … … 170 176 return true; 171 177 } 178 179 if ( get_template() === $plugin ) { 180 return true; 181 } 172 182 } 173 183 return false; -
captchafox-for-forms/tags/1.6.0/src/php/Settings/Plugins.php
r3057882 r3064003 107 107 'group' => $setting_plugins, 108 108 'available' => is_plugin_active( 'fluentform/fluentform.php' ), 109 'options' => [ 110 'form' => __( 'Forms', 'captchafox-for-forms' ), 111 ], 112 ]); 113 add_settings_field('avada-forms', $this->get_plugin_logo( 'avada' ), [ $this, 'render_plugin_field' ], $setting_plugins, $setting_plugins, [ 114 'label_for' => 'avada-forms', 115 'class' => 'cf-plugin-item', 116 'group' => $setting_plugins, 117 'available' => get_template() === 'Avada', 109 118 'options' => [ 110 119 'form' => __( 'Forms', 'captchafox-for-forms' ), -
captchafox-for-forms/tags/1.6.0/vendor/composer/autoload_classmap.php
r3057882 r3064003 10 10 'CaptchaFox\\Helper\\Request' => $baseDir . '/src/php/Helper/Request.php', 11 11 'CaptchaFox\\Initializer' => $baseDir . '/src/php/Initializer.php', 12 'CaptchaFox\\Plugins\\AvadaForms\\Forms' => $baseDir . '/src/php/Plugins/AvadaForms/Forms.php', 12 13 'CaptchaFox\\Plugins\\BBPress\\NewTopic' => $baseDir . '/src/php/Plugins/BBPress/NewTopic.php', 13 14 'CaptchaFox\\Plugins\\BBPress\\Reply' => $baseDir . '/src/php/Plugins/BBPress/Reply.php', -
captchafox-for-forms/tags/1.6.0/vendor/composer/autoload_static.php
r3057882 r3064003 25 25 'CaptchaFox\\Helper\\Request' => __DIR__ . '/../..' . '/src/php/Helper/Request.php', 26 26 'CaptchaFox\\Initializer' => __DIR__ . '/../..' . '/src/php/Initializer.php', 27 'CaptchaFox\\Plugins\\AvadaForms\\Forms' => __DIR__ . '/../..' . '/src/php/Plugins/AvadaForms/Forms.php', 27 28 'CaptchaFox\\Plugins\\BBPress\\NewTopic' => __DIR__ . '/../..' . '/src/php/Plugins/BBPress/NewTopic.php', 28 29 'CaptchaFox\\Plugins\\BBPress\\Reply' => __DIR__ . '/../..' . '/src/php/Plugins/BBPress/Reply.php', -
captchafox-for-forms/tags/1.6.0/vendor/composer/installed.php
r3057882 r3064003 2 2 'root' => array( 3 3 'name' => 'captchafox/captchafox-wordpress', 4 'pretty_version' => '1. 5.0',5 'version' => '1. 5.0.0',6 'reference' => ' 59aef596ceae27d4263eac5ef83f2d948e26778b',4 'pretty_version' => '1.6.0', 5 'version' => '1.6.0.0', 6 'reference' => '19e4fec30c5584e067165309c0a742927f9b763b', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'captchafox/captchafox-wordpress' => array( 14 'pretty_version' => '1. 5.0',15 'version' => '1. 5.0.0',16 'reference' => ' 59aef596ceae27d4263eac5ef83f2d948e26778b',14 'pretty_version' => '1.6.0', 15 'version' => '1.6.0.0', 16 'reference' => '19e4fec30c5584e067165309c0a742927f9b763b', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
captchafox-for-forms/trunk/captchafox.php
r3057882 r3064003 7 7 * Plugin Name: CaptchaFox for WordPress 8 8 * Description: GDPR compliant bot and spam protection with CaptchaFox. 9 * Version: 1. 5.09 * Version: 1.6.0 10 10 * Requires at least: 5.0 11 11 * Requires PHP: 7.0 … … 16 16 * 17 17 * WC requires at least: 3.0 18 * WC tested up to: 8. 618 * WC tested up to: 8.7 19 19 */ 20 20 … … 28 28 29 29 const CAPTCHAFOX_BASE_FILE = __FILE__; 30 const PLUGIN_VERSION = '1. 5.0';30 const PLUGIN_VERSION = '1.6.0'; 31 31 32 32 require 'vendor/autoload.php'; -
captchafox-for-forms/trunk/readme.txt
r3057882 r3064003 1 1 === CaptchaFox for WordPress === 2 2 Contributors: scorialabs 3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, comments,block bots, form3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, block bots, form 4 4 Requires at least: 5.0 5 5 Tested up to: 6.5 6 6 Requires PHP: 7.0 7 Stable tag: 1. 5.07 Stable tag: 1.6.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 * Otter Blocks 51 51 * Fluent Forms 52 * Avada Forms 52 53 53 54 == Frequently Asked Questions == … … 78 79 == Changelog == 79 80 81 = 1.6.0 = 82 * Tested on WooCommerce 8.7 83 * Support Avada Forms 84 80 85 = 1.5.0 = 81 86 * Support Fluent Forms -
captchafox-for-forms/trunk/src/php/Initializer.php
r3057882 r3064003 137 137 'class' => Plugins\FluentForms\Forms::class, 138 138 ], 139 [ 140 'group' => 'avada-forms', 141 'action' => 'form', 142 'plugins' => [ 'Avada' ], 143 'class' => Plugins\AvadaForms\Forms::class, 144 ], 139 145 ]; 140 146 … … 170 176 return true; 171 177 } 178 179 if ( get_template() === $plugin ) { 180 return true; 181 } 172 182 } 173 183 return false; -
captchafox-for-forms/trunk/src/php/Settings/Plugins.php
r3057882 r3064003 107 107 'group' => $setting_plugins, 108 108 'available' => is_plugin_active( 'fluentform/fluentform.php' ), 109 'options' => [ 110 'form' => __( 'Forms', 'captchafox-for-forms' ), 111 ], 112 ]); 113 add_settings_field('avada-forms', $this->get_plugin_logo( 'avada' ), [ $this, 'render_plugin_field' ], $setting_plugins, $setting_plugins, [ 114 'label_for' => 'avada-forms', 115 'class' => 'cf-plugin-item', 116 'group' => $setting_plugins, 117 'available' => get_template() === 'Avada', 109 118 'options' => [ 110 119 'form' => __( 'Forms', 'captchafox-for-forms' ), -
captchafox-for-forms/trunk/vendor/composer/autoload_classmap.php
r3057882 r3064003 10 10 'CaptchaFox\\Helper\\Request' => $baseDir . '/src/php/Helper/Request.php', 11 11 'CaptchaFox\\Initializer' => $baseDir . '/src/php/Initializer.php', 12 'CaptchaFox\\Plugins\\AvadaForms\\Forms' => $baseDir . '/src/php/Plugins/AvadaForms/Forms.php', 12 13 'CaptchaFox\\Plugins\\BBPress\\NewTopic' => $baseDir . '/src/php/Plugins/BBPress/NewTopic.php', 13 14 'CaptchaFox\\Plugins\\BBPress\\Reply' => $baseDir . '/src/php/Plugins/BBPress/Reply.php', -
captchafox-for-forms/trunk/vendor/composer/autoload_static.php
r3057882 r3064003 25 25 'CaptchaFox\\Helper\\Request' => __DIR__ . '/../..' . '/src/php/Helper/Request.php', 26 26 'CaptchaFox\\Initializer' => __DIR__ . '/../..' . '/src/php/Initializer.php', 27 'CaptchaFox\\Plugins\\AvadaForms\\Forms' => __DIR__ . '/../..' . '/src/php/Plugins/AvadaForms/Forms.php', 27 28 'CaptchaFox\\Plugins\\BBPress\\NewTopic' => __DIR__ . '/../..' . '/src/php/Plugins/BBPress/NewTopic.php', 28 29 'CaptchaFox\\Plugins\\BBPress\\Reply' => __DIR__ . '/../..' . '/src/php/Plugins/BBPress/Reply.php', -
captchafox-for-forms/trunk/vendor/composer/installed.php
r3057882 r3064003 2 2 'root' => array( 3 3 'name' => 'captchafox/captchafox-wordpress', 4 'pretty_version' => '1. 5.0',5 'version' => '1. 5.0.0',6 'reference' => ' 59aef596ceae27d4263eac5ef83f2d948e26778b',4 'pretty_version' => '1.6.0', 5 'version' => '1.6.0.0', 6 'reference' => '19e4fec30c5584e067165309c0a742927f9b763b', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'captchafox/captchafox-wordpress' => array( 14 'pretty_version' => '1. 5.0',15 'version' => '1. 5.0.0',16 'reference' => ' 59aef596ceae27d4263eac5ef83f2d948e26778b',14 'pretty_version' => '1.6.0', 15 'version' => '1.6.0.0', 16 'reference' => '19e4fec30c5584e067165309c0a742927f9b763b', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.