Changeset 2840274
- Timestamp:
- 12/28/2022 07:03:20 AM (3 years ago)
- Location:
- social-contact-form
- Files:
-
- 18 added
- 10 deleted
- 8 edited
- 1 copied
-
tags/1.1.6 (copied) (copied from social-contact-form/trunk)
-
tags/1.1.6/includes/Boot.php (modified) (1 diff)
-
tags/1.1.6/includes/WPPOOL (deleted)
-
tags/1.1.6/includes/admin/Hooks.php (modified) (3 diffs)
-
tags/1.1.6/includes/appsero/.gitignore (added)
-
tags/1.1.6/includes/appsero/Client.php (deleted)
-
tags/1.1.6/includes/appsero/Insights.php (deleted)
-
tags/1.1.6/includes/appsero/License.php (deleted)
-
tags/1.1.6/includes/appsero/Updater.php (deleted)
-
tags/1.1.6/includes/appsero/composer.json (added)
-
tags/1.1.6/includes/appsero/readme.md (added)
-
tags/1.1.6/includes/appsero/src (added)
-
tags/1.1.6/includes/appsero/src/Client.php (added)
-
tags/1.1.6/includes/appsero/src/Insights.php (added)
-
tags/1.1.6/includes/appsero/src/License.php (added)
-
tags/1.1.6/includes/appsero/src/Updater.php (added)
-
tags/1.1.6/includes/wppool (added)
-
tags/1.1.6/plugin.php (modified) (1 diff)
-
tags/1.1.6/readme.txt (modified) (2 diffs)
-
trunk/includes/Boot.php (modified) (1 diff)
-
trunk/includes/WPPOOL (deleted)
-
trunk/includes/admin/Hooks.php (modified) (3 diffs)
-
trunk/includes/appsero/.gitignore (added)
-
trunk/includes/appsero/Client.php (deleted)
-
trunk/includes/appsero/Insights.php (deleted)
-
trunk/includes/appsero/License.php (deleted)
-
trunk/includes/appsero/Updater.php (deleted)
-
trunk/includes/appsero/composer.json (added)
-
trunk/includes/appsero/readme.md (added)
-
trunk/includes/appsero/src (added)
-
trunk/includes/appsero/src/Client.php (added)
-
trunk/includes/appsero/src/Insights.php (added)
-
trunk/includes/appsero/src/License.php (added)
-
trunk/includes/appsero/src/Updater.php (added)
-
trunk/includes/wppool (added)
-
trunk/plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-contact-form/tags/1.1.6/includes/Boot.php
r2817204 r2840274 13 13 14 14 // Require files 15 if ( file_exists( SCF_INC . '/ WPPOOL/Plugin.php' ) ) {16 require_once SCF_INC . '/ WPPOOL/Plugin.php';15 if ( file_exists( SCF_INC . '/wppool/src/Plugin.php' ) ) { 16 require_once SCF_INC . '/wppool/src/Plugin.php'; 17 17 } 18 19 if ( file_exists( SCF_INC . '/appsero/Client.php' ) && !class_exists('\SocialContactForm\Appsero\Client') ) { 20 require_once SCF_INC . '/appsero/Client.php'; 21 } 22 18 23 19 // core files 24 20 require_once SCF_INC . '/others/Common.php'; -
social-contact-form/tags/1.1.6/includes/admin/Hooks.php
r2817204 r2840274 16 16 { 17 17 register_activation_hook(SCF_FILE, array($this, 'activate_scf')); 18 19 # appsero 20 $this->init_appsero(); 21 22 18 23 add_action('init', array($this, 'register_scf_settings')); 19 24 … … 23 28 // add_action('scf_setting_footer', array($this, 'scf_setting_footer')); 24 29 25 # appsero26 add_action('init', [$this, 'init_appsero']);27 30 28 31 add_filter('plugin_action_links_' . plugin_basename(SCF_FILE), array($this, 'plugin_action_links')); … … 221 224 public function init_appsero() 222 225 { 223 if (class_exists('\SocialContactForm\Appsero\Client')) { 224 $this->appsero = new \SocialContactForm\Appsero\Client('9b39bac1-3b27-41d1-aeec-18fbfd4a9977', 'Social Contact Form', SCF_FILE); 225 $this->appsero->set_textdomain('social-contact-form'); 226 // Active insights 226 if (!class_exists('\Appsero\Client')) { 227 require_once SCF_INC . '/appsero/src/Client.php'; 228 } 229 230 add_filter('appsero_is_local', '__return_false'); 231 232 $this->appsero = new \Appsero\Client('9b39bac1-3b27-41d1-aeec-18fbfd4a9977', 'Social Contact Form', SCF_FILE); 233 $this->appsero->set_textdomain('social-contact-form'); 227 234 228 $this->appsero->insights()->init(); 229 } 235 // Active insights 236 $this->appsero->insights()->init(); 237 238 $scf_plugin = new \WPPOOL\Plugin('social_contact_form'); 239 $scf_plugin->appsero(); 240 230 241 } 231 242 -
social-contact-form/tags/1.1.6/plugin.php
r2834159 r2840274 4 4 * plugin URI: https://wppool.dev/social-contact-form-pricing/ 5 5 * Description: Add a contact form on your website that sends form leads directly to your WhatsApp web or mobile, including WooCommerce orders, cart, etc 6 * Version: 1.1. 56 * Version: 1.1.6 7 7 * Author: WPPOOL 8 8 * Author URI: https://wppool.dev -
social-contact-form/tags/1.1.6/readme.txt
r2834159 r2840274 5 5 Tested up to: 6.1 6 6 Requires PHP: 5.4 7 Stable tag: 1.1. 57 Stable tag: 1.1.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 142 142 143 143 == Changelog == 144 145 = 1.1.6 - 27 DEC 2022 = 146 ** Improve: Minor bugs and performance 144 147 145 148 = 1.1.5 - 15 DEC 2022 = -
social-contact-form/trunk/includes/Boot.php
r2817204 r2840274 13 13 14 14 // Require files 15 if ( file_exists( SCF_INC . '/ WPPOOL/Plugin.php' ) ) {16 require_once SCF_INC . '/ WPPOOL/Plugin.php';15 if ( file_exists( SCF_INC . '/wppool/src/Plugin.php' ) ) { 16 require_once SCF_INC . '/wppool/src/Plugin.php'; 17 17 } 18 19 if ( file_exists( SCF_INC . '/appsero/Client.php' ) && !class_exists('\SocialContactForm\Appsero\Client') ) { 20 require_once SCF_INC . '/appsero/Client.php'; 21 } 22 18 23 19 // core files 24 20 require_once SCF_INC . '/others/Common.php'; -
social-contact-form/trunk/includes/admin/Hooks.php
r2817204 r2840274 16 16 { 17 17 register_activation_hook(SCF_FILE, array($this, 'activate_scf')); 18 19 # appsero 20 $this->init_appsero(); 21 22 18 23 add_action('init', array($this, 'register_scf_settings')); 19 24 … … 23 28 // add_action('scf_setting_footer', array($this, 'scf_setting_footer')); 24 29 25 # appsero26 add_action('init', [$this, 'init_appsero']);27 30 28 31 add_filter('plugin_action_links_' . plugin_basename(SCF_FILE), array($this, 'plugin_action_links')); … … 221 224 public function init_appsero() 222 225 { 223 if (class_exists('\SocialContactForm\Appsero\Client')) { 224 $this->appsero = new \SocialContactForm\Appsero\Client('9b39bac1-3b27-41d1-aeec-18fbfd4a9977', 'Social Contact Form', SCF_FILE); 225 $this->appsero->set_textdomain('social-contact-form'); 226 // Active insights 226 if (!class_exists('\Appsero\Client')) { 227 require_once SCF_INC . '/appsero/src/Client.php'; 228 } 229 230 add_filter('appsero_is_local', '__return_false'); 231 232 $this->appsero = new \Appsero\Client('9b39bac1-3b27-41d1-aeec-18fbfd4a9977', 'Social Contact Form', SCF_FILE); 233 $this->appsero->set_textdomain('social-contact-form'); 227 234 228 $this->appsero->insights()->init(); 229 } 235 // Active insights 236 $this->appsero->insights()->init(); 237 238 $scf_plugin = new \WPPOOL\Plugin('social_contact_form'); 239 $scf_plugin->appsero(); 240 230 241 } 231 242 -
social-contact-form/trunk/plugin.php
r2834159 r2840274 4 4 * plugin URI: https://wppool.dev/social-contact-form-pricing/ 5 5 * Description: Add a contact form on your website that sends form leads directly to your WhatsApp web or mobile, including WooCommerce orders, cart, etc 6 * Version: 1.1. 56 * Version: 1.1.6 7 7 * Author: WPPOOL 8 8 * Author URI: https://wppool.dev -
social-contact-form/trunk/readme.txt
r2834159 r2840274 5 5 Tested up to: 6.1 6 6 Requires PHP: 5.4 7 Stable tag: 1.1. 57 Stable tag: 1.1.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 142 142 143 143 == Changelog == 144 145 = 1.1.6 - 27 DEC 2022 = 146 ** Improve: Minor bugs and performance 144 147 145 148 = 1.1.5 - 15 DEC 2022 =
Note: See TracChangeset
for help on using the changeset viewer.