Changeset 3354336
- Timestamp:
- 09/02/2025 04:00:21 AM (7 months ago)
- Location:
- ghl-wizard
- Files:
-
- 61 added
- 4 edited
-
tags/1.2.19/api/apis.php (modified) (1 diff)
-
tags/1.2.20 (added)
-
tags/1.2.20/.gitignore (added)
-
tags/1.2.20/api (added)
-
tags/1.2.20/api/apis.php (added)
-
tags/1.2.20/api/contacts.php (added)
-
tags/1.2.20/api/get-campaigns.php (added)
-
tags/1.2.20/api/get-custom-fields.php (added)
-
tags/1.2.20/api/get-custom-values.php (added)
-
tags/1.2.20/api/get-tags.php (added)
-
tags/1.2.20/api/get-token.php (added)
-
tags/1.2.20/api/get-workflows.php (added)
-
tags/1.2.20/css (added)
-
tags/1.2.20/css/admin-styles.css (added)
-
tags/1.2.20/css/select2.min.css (added)
-
tags/1.2.20/css/styles.css (added)
-
tags/1.2.20/ghl-wizard.php (added)
-
tags/1.2.20/images (added)
-
tags/1.2.20/images/50-off.png (added)
-
tags/1.2.20/images/apply-tags.png (added)
-
tags/1.2.20/images/ghl-bw.png (added)
-
tags/1.2.20/images/ghl-large-bw.png (added)
-
tags/1.2.20/images/ghl-large.png (added)
-
tags/1.2.20/images/ghl.png (added)
-
tags/1.2.20/images/power-up.png (added)
-
tags/1.2.20/inc (added)
-
tags/1.2.20/inc/content-protection.php (added)
-
tags/1.2.20/inc/elementor (added)
-
tags/1.2.20/inc/elementor/restricted-post-widget.php (added)
-
tags/1.2.20/inc/includes.php (added)
-
tags/1.2.20/inc/membership-page.php (added)
-
tags/1.2.20/inc/metaboxes.php (added)
-
tags/1.2.20/inc/options-page.php (added)
-
tags/1.2.20/inc/power-up.php (added)
-
tags/1.2.20/inc/product-page-settings.php (added)
-
tags/1.2.20/inc/settings-form.php (added)
-
tags/1.2.20/inc/settings-page.php (added)
-
tags/1.2.20/inc/shortcodes.php (added)
-
tags/1.2.20/inc/support-page.php (added)
-
tags/1.2.20/inc/surecart.php (added)
-
tags/1.2.20/inc/utility.php (added)
-
tags/1.2.20/inc/woo.php (added)
-
tags/1.2.20/inc/wp_user.php (added)
-
tags/1.2.20/js (added)
-
tags/1.2.20/js/admin-scripts.js (added)
-
tags/1.2.20/js/scripts.js (added)
-
tags/1.2.20/js/select2.min.js (added)
-
tags/1.2.20/lib (added)
-
tags/1.2.20/lib/client (added)
-
tags/1.2.20/lib/client/.editorconfig (added)
-
tags/1.2.20/lib/client/.gitignore (added)
-
tags/1.2.20/lib/client/.php-cs-fixer.dist.php (added)
-
tags/1.2.20/lib/client/composer.json (added)
-
tags/1.2.20/lib/client/composer.lock (added)
-
tags/1.2.20/lib/client/phpcs.xml.dist (added)
-
tags/1.2.20/lib/client/readme.md (added)
-
tags/1.2.20/lib/client/src (added)
-
tags/1.2.20/lib/client/src/Client.php (added)
-
tags/1.2.20/lib/client/src/Insights.php (added)
-
tags/1.2.20/lib/client/src/License.php (added)
-
tags/1.2.20/readme.txt (added)
-
tags/1.2.20/uninstall.php (added)
-
trunk/api/apis.php (modified) (1 diff)
-
trunk/ghl-wizard.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ghl-wizard/tags/1.2.19/api/apis.php
r3321097 r3354336 1 1 <?php 2 require_once('get-token.php'); 3 require_once('get-tags.php'); 4 require_once('get-campaigns.php'); 5 require_once('get-workflows.php'); 6 require_once('contacts.php'); 7 require_once('get-custom-values.php'); 8 require_once('get-custom-fields.php'); 2 add_action('init', function() { 3 require_once('get-token.php'); 4 require_once('get-tags.php'); 5 require_once('get-campaigns.php'); 6 require_once('get-workflows.php'); 7 require_once('contacts.php'); 8 require_once('get-custom-values.php'); 9 require_once('get-associations.php'); 10 require_once('get-custom-fields.php'); 11 }); -
ghl-wizard/trunk/api/apis.php
r3052176 r3354336 1 1 <?php 2 require_once('get-token.php'); 3 require_once('get-tags.php'); 4 require_once('get-campaigns.php'); 5 require_once('get-workflows.php'); 6 require_once('contacts.php'); 7 require_once('get-custom-values.php'); 8 require_once('get-custom-fields.php'); 2 add_action('init', function() { 3 require_once('get-token.php'); 4 require_once('get-tags.php'); 5 require_once('get-campaigns.php'); 6 require_once('get-workflows.php'); 7 require_once('contacts.php'); 8 require_once('get-custom-values.php'); 9 require_once('get-associations.php'); 10 require_once('get-custom-fields.php'); 11 }); -
ghl-wizard/trunk/ghl-wizard.php
r3321097 r3354336 5 5 * Plugin URI: https://betterwizard.com/lead-connector-wizard/ 6 6 * Description: Connect WordPress with the popular LeadConnector CRM(HighLevel) and combine the power of automation and excellent user experience. Including memberships, content protection, WooCommerce automation, custom fields & many more... 7 * Version: 1.2. 197 * Version: 1.2.20 8 8 * Author: Better Wizard 9 9 * Author URI: https://betterwizard.com/ -
ghl-wizard/trunk/readme.txt
r3323654 r3354336 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 1.2. 198 Stable tag: 1.2.20 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 203 203 == Changelog == 204 204 205 = 1.2.20 = 206 * bug fixed 207 205 208 = 1.2.19 = 206 209 * Security issue updated
Note: See TracChangeset
for help on using the changeset viewer.