Changeset 3399749
- Timestamp:
- 11/20/2025 01:09:16 PM (4 months ago)
- Location:
- accessibility-assistant/trunk
- Files:
-
- 10 edited
-
accessibility_assistant.php (modified) (2 diffs)
-
admin/accessibility_counts_dashboard.php (modified) (1 diff)
-
admin/accessibility_dashboard.php (modified) (3 diffs)
-
admin/edit-language.php (modified) (2 diffs)
-
admin/languages-listing.php (modified) (2 diffs)
-
admin/menu-settings.php (modified) (3 diffs)
-
admin/plan-list.php (modified) (1 diff)
-
admin/scanner.php (modified) (2 diffs)
-
admin/widget-settings.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
accessibility-assistant/trunk/accessibility_assistant.php
r3393585 r3399749 5 5 Description: ADA, EAA, AODA & WCAG Compliance Widget for Website Accessibility 6 6 Author: CartCoder 7 Version: 4.0. 77 Version: 4.0.8 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 20 20 21 21 define('ASSISTANT_API_URL', ASSISTANT_URL . '/v1'); 22 define('CDN_URL', 'https://cdn.cartcoders.com/'); 22 23 23 24 // During Activatation -
accessibility-assistant/trunk/admin/accessibility_counts_dashboard.php
r3393569 r3399749 6 6 $data = array('shopid' => $shopid,); 7 7 8 $content = assistant_api_call('/ getShopData', $data, 'get');8 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 9 9 $primary_id = $content['data']['id']; 10 10 if ($primary_id) { -
accessibility-assistant/trunk/admin/accessibility_dashboard.php
r3393569 r3399749 6 6 $data = array('shopid' => $shopid,); 7 7 8 $content = assistant_api_call('/ getShopData', $data, 'get');8 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 9 9 10 10 ?> … … 404 404 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <strong>Success! </strong> </div>'; 405 405 $data = array('shopid' => $returnsenddata['data']['shopid'],); 406 $content = assistant_api_call('/ getShopData', $data, 'get');406 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 407 407 } else { 408 408 echo '<div class="alert alert-danger alert-dismissible"> … … 420 420 421 421 422 // if (empty($current_plan)) { 423 // require_once 'plan-list.php'; 424 // return; 425 // } 426 427 if (empty($accessibility_url)) { 428 update_option('accessibility_url', sanitize_text_field($content['data']['url'])); 429 } 422 $js_url = CDN_URL."wp_js/{$shopid}.js"; 423 update_option('accessibility_url', $js_url); 430 424 431 425 //if ($trial_day == 1 || $access_by_admin == '1') { -
accessibility-assistant/trunk/admin/edit-language.php
r3393569 r3399749 11 11 $accessibility_url = get_option('accessibility_url'); 12 12 $data = array('shopid' => $shopid, 'language_translation_id' => $current_language_id); 13 $content = assistant_api_call('/ getShopData', $data, 'get');13 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 14 14 $current_plan = $content['data']['plan']; 15 15 … … 561 561 echo '<div class="alert alert-success alert-dismissible"> 562 562 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <strong>' . esc_html__('Success!', 'accessibility-assistant') . ' </strong> </div>'; 563 $content = assistant_api_call('/ getShopData', $data, 'get');563 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 564 564 } elseif ($returnsenddata['status'] == 400) { 565 565 echo '<div class="alert alert-danger alert-dismissible"> -
accessibility-assistant/trunk/admin/languages-listing.php
r3393569 r3399749 5 5 $accessibility_url = get_option('accessibility_url'); 6 6 $data = array('shopid' => $shopid, 'language' => true); 7 $content = assistant_api_call('/ getShopData', $data, 'get');7 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 8 8 9 9 $primary_id = $content['data']['id']; … … 35 35 36 36 37 //if (empty($accessibility_url)) { 38 $url_data = assistant_api_call('/wordpress/script', ['siteId' => $shopid], 'get'); 39 $js_url = $url_data['scriptUrl']; 37 $js_url = CDN_URL."wp_js/{$shopid}.js"; 40 38 update_option('accessibility_url', $js_url); 41 //}42 39 43 40 if ($access_by_admin == '1') { -
accessibility-assistant/trunk/admin/menu-settings.php
r3393569 r3399749 7 7 $data = array('shopid' => $shopid, 'primaryid' => $accessibility_primaryid); 8 8 9 $content = assistant_api_call('/ getShopData', $data, 'get');9 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 10 10 11 11 $primary_id = $content['data']['id']; … … 451 451 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <strong>Success! </strong> </div>'; 452 452 $data = array('shopid' => $returnsenddata['data']['shopid'],); 453 $content = assistant_api_call('/ getShopData', $data, 'get');453 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 454 454 } else { 455 455 echo '<div class="alert alert-danger alert-dismissible"> … … 466 466 <?php 467 467 468 //if (empty($accessibility_url)) { 469 $url_data = assistant_api_call('/wordpress/script', ['siteId' => $shopid], 'get'); 470 $js_url = $url_data['scriptUrl']; 468 $js_url = CDN_URL."wp_js/{$shopid}.js"; 471 469 update_option('accessibility_url', $js_url); 472 //} 470 473 471 if ($access_by_admin == '1') { 474 472 echo "<p class='free-trial-note'>You have admin access</p>"; -
accessibility-assistant/trunk/admin/plan-list.php
r3393569 r3399749 4 4 $token = get_option('accessibility_tokken'); 5 5 $data = array('shopid' => $shopid,); 6 $content = assistant_api_call('/ getShopData', $data, 'get');6 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 7 7 8 8 $primary_id = $content['data']['id']; -
accessibility-assistant/trunk/admin/scanner.php
r3393569 r3399749 6 6 $data = array('shopid' => $shopid,); 7 7 8 $content = assistant_api_call('/ getShopData', $data, 'get');8 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 9 9 $primary_id = $content['data']['id']; 10 10 if ($primary_id) { … … 21 21 22 22 23 //if (empty($accessibility_url)) { 24 $url_data = assistant_api_call('/wordpress/script', ['siteId' => $shopid], 'get'); 25 $js_url = $url_data['scriptUrl']; 23 $js_url = CDN_URL."wp_js/{$shopid}.js"; 26 24 update_option('accessibility_url', $js_url); 27 //} 25 28 26 29 27 if ($access_by_admin == '1') { -
accessibility-assistant/trunk/admin/widget-settings.php
r3393569 r3399749 6 6 $data = array('shopid' => $shopid,); 7 7 8 $content = assistant_api_call('/ getShopData', $data, 'get');8 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 9 9 10 10 $primary_id = $content['data']['id']; … … 138 138 <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <strong>Success! </strong> </div>'; 139 139 $data = array('shopid' => $returnsenddata['data']['shopid'],); 140 $content = assistant_api_call('/ getShopData', $data, 'get');140 $content = assistant_api_call('/NewGetShopData', $data, 'get'); 141 141 } else { 142 142 echo '<div class="alert alert-danger alert-dismissible"> … … 154 154 <?php 155 155 156 //if (empty($accessibility_url)) { 157 $url_data = assistant_api_call('/wordpress/script', ['siteId' => $shopid], 'get'); 158 $js_url = $url_data['scriptUrl']; 156 $js_url = CDN_URL."wp_js/{$shopid}.js"; 159 157 update_option('accessibility_url', $js_url); 160 //}161 158 162 159 if ($access_by_admin == '1') { -
accessibility-assistant/trunk/readme.txt
r3393569 r3399749 256 256 = 1.4.1 = 257 257 * Added a new screenshots, resolved the admin access issue, added language translation 258 258 259 = 1.4.2 = 259 260 * Added a testimonials and loader 261 260 262 = 1.4.3 = 261 263 * Disabled all the options on dashboard and edit-language page and save buttons when user has no plan … … 291 293 292 294 = 2.1.6 = 293 * s canner added295 * site scanner added 294 296 295 297 = 2.1.8 = 296 * widget loader & new banner 298 * widget loader & new banner added on dashboard page 297 299 298 300 = 2.1.9 = 299 * Laravel 12301 * Added new features 300 302 301 303 = 3.0 = 302 * Member access304 * Added Member access feature 303 305 304 306 = 3.0.5 = … … 306 308 307 309 = 3.0.6 = 308 * Updated style310 * Updated style 309 311 310 312 = 3.0.7 = 311 * Removed log313 * Removed log 312 314 313 315 = 3.0.8 = 314 * Fixed the conflict errors with the popup maker plugin316 * Fixed the conflict errors with the popup maker plugin 315 317 316 318 = 4.0.0 = 317 * Widget icon hover text added319 * Widget icon hover text added 318 320 319 321 = 4.0.1 = 320 * API domain changed322 * API domain changed 321 323 322 324 = 4.0.4 = 323 * Load cdn directly on website325 * Load cdn directly on website 324 326 325 327 = 4.0.6 = 326 Romanian language added 328 * Romanian language added 329 330 = 4.0.8 = 331 * Resolved bugs related languages ranking 327 332 328 333 **Explore More Accessibility Options:**
Note: See TracChangeset
for help on using the changeset viewer.