Changeset 3369164
- Timestamp:
- 09/28/2025 10:55:28 AM (6 months ago)
- Location:
- ghl-wizard
- Files:
-
- 67 added
- 3 edited
-
tags/1.4.1 (added)
-
tags/1.4.1/.gitignore (added)
-
tags/1.4.1/api (added)
-
tags/1.4.1/api/apis.php (added)
-
tags/1.4.1/api/contacts.php (added)
-
tags/1.4.1/api/get-associations.php (added)
-
tags/1.4.1/api/get-campaigns.php (added)
-
tags/1.4.1/api/get-custom-fields.php (added)
-
tags/1.4.1/api/get-custom-values.php (added)
-
tags/1.4.1/api/get-tags.php (added)
-
tags/1.4.1/api/get-token.php (added)
-
tags/1.4.1/api/get-workflows.php (added)
-
tags/1.4.1/css (added)
-
tags/1.4.1/css/admin-styles.css (added)
-
tags/1.4.1/css/select2.min.css (added)
-
tags/1.4.1/css/styles.css (added)
-
tags/1.4.1/ghl-wizard.php (added)
-
tags/1.4.1/go-pro.svg (added)
-
tags/1.4.1/images (added)
-
tags/1.4.1/images/50-off.png (added)
-
tags/1.4.1/images/apply-tags.png (added)
-
tags/1.4.1/images/ghl-bw.png (added)
-
tags/1.4.1/images/ghl-large-bw.png (added)
-
tags/1.4.1/images/ghl-large.png (added)
-
tags/1.4.1/images/ghl.png (added)
-
tags/1.4.1/images/go-pro.svg (added)
-
tags/1.4.1/images/logo-star-icon.svg (added)
-
tags/1.4.1/images/power-up.png (added)
-
tags/1.4.1/inc (added)
-
tags/1.4.1/inc/content-protection.php (added)
-
tags/1.4.1/inc/elementor (added)
-
tags/1.4.1/inc/elementor.php (added)
-
tags/1.4.1/inc/elementor/restricted-post-widget.php (added)
-
tags/1.4.1/inc/includes.php (added)
-
tags/1.4.1/inc/membership-page.php (added)
-
tags/1.4.1/inc/metaboxes.php (added)
-
tags/1.4.1/inc/options-page.php (added)
-
tags/1.4.1/inc/power-up.php (added)
-
tags/1.4.1/inc/product-page-settings.php (added)
-
tags/1.4.1/inc/settings-form.php (added)
-
tags/1.4.1/inc/settings-page.php (added)
-
tags/1.4.1/inc/shortcodes.php (added)
-
tags/1.4.1/inc/support-page.php (added)
-
tags/1.4.1/inc/surecart.php (added)
-
tags/1.4.1/inc/utility.php (added)
-
tags/1.4.1/inc/woo.php (added)
-
tags/1.4.1/inc/wp_user.php (added)
-
tags/1.4.1/js (added)
-
tags/1.4.1/js/admin-scripts.js (added)
-
tags/1.4.1/js/scripts.js (added)
-
tags/1.4.1/js/select2.min.js (added)
-
tags/1.4.1/lib (added)
-
tags/1.4.1/lib/client (added)
-
tags/1.4.1/lib/client/.editorconfig (added)
-
tags/1.4.1/lib/client/.gitignore (added)
-
tags/1.4.1/lib/client/.php-cs-fixer.dist.php (added)
-
tags/1.4.1/lib/client/composer.json (added)
-
tags/1.4.1/lib/client/composer.lock (added)
-
tags/1.4.1/lib/client/phpcs.xml.dist (added)
-
tags/1.4.1/lib/client/readme.md (added)
-
tags/1.4.1/lib/client/src (added)
-
tags/1.4.1/lib/client/src/Client.php (added)
-
tags/1.4.1/lib/client/src/Insights.php (added)
-
tags/1.4.1/lib/client/src/License.php (added)
-
tags/1.4.1/logo-star-icon.svg (added)
-
tags/1.4.1/readme.txt (added)
-
tags/1.4.1/uninstall.php (added)
-
trunk/ghl-wizard.php (modified) (1 diff)
-
trunk/inc/options-page.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ghl-wizard/trunk/ghl-wizard.php
r3366906 r3369164 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.4. 07 * Version: 1.4.1 8 8 * Author: Better Wizard 9 9 * Author URI: https://connectorwizard.app/ -
ghl-wizard/trunk/inc/options-page.php
r3366906 r3369164 223 223 224 224 $associations = hlwpw_get_associations(); 225 if (!is_array($associations)) { 226 $associations = []; 227 } 225 228 $user_defined_associations = array_filter($associations, function($item) { 226 return $item->associationType === 'USER_DEFINED';229 return isset($item->associationType) && $item->associationType === 'USER_DEFINED'; 227 230 }); 228 231 … … 232 235 $associations_html = "<option value='0'> - No user defined association - </option>"; 233 236 foreach ( $user_defined_associations as $association ) { 237 $key = isset($association->key) ? esc_html($association->key) : ''; 238 $id = isset($association->id) ? esc_attr($association->id) : ''; 234 239 $selected = ( $lcw_association_id == $association->id ) ? 'selected' : ''; 235 $associations_html .= "<option value='{$ association->id}' {$selected}> {$association->key} </option>";240 $associations_html .= "<option value='{$id}' {$selected}> {$key} </option>"; 236 241 } 237 242 -
ghl-wizard/trunk/readme.txt
r3366906 r3369164 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.0 8 Stable tag: 1.4. 08 Stable tag: 1.4.1 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.