Changeset 3278053
- Timestamp:
- 04/21/2025 10:33:25 AM (9 months ago)
- Location:
- powr-multi-slider
- Files:
-
- 8 added
- 3 edited
-
tags/2.1.0 (added)
-
tags/2.1.0/README.md (added)
-
tags/2.1.0/changelog.txt (added)
-
tags/2.1.0/powr-multi-slider.php (added)
-
tags/2.1.0/src (added)
-
tags/2.1.0/src/icons (added)
-
tags/2.1.0/src/icons/powr-icon-blue.png (added)
-
tags/2.1.0/src/icons/powr-icon.png (added)
-
trunk/README.md (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/powr-multi-slider.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
powr-multi-slider/trunk/README.md
r3251594 r3278053 4 4 Tags: slider, carousel, image slider, video slider, testimonial slider 5 5 Requires at least: 3.0 6 Tested up to: 6. 76 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 2. 0.08 Stable tag: 2.1.0 9 9 License: GPL-3.0-or-later 10 10 URI: http://www.gnu.org/licenses/gpl-3.0.html … … 181 181 - **Service**: POWR.io API 182 182 - **Purpose**: To authenticate and render the plugin widget on your WordPress site. 183 - **Data Sent**: The plugin sends the current user's email address to the POWR.io API for authentication purposes.183 - **Data Sent**: The plugin sends the current user's email address, web site url, ip, and the username to the POWR.io API for authentication purposes. 184 184 - **When**: This data is sent when the admin settings page is accessed or when the shortcode is used to display the plugin. 185 185 - **Service Provider**: POWR.io -
powr-multi-slider/trunk/changelog.txt
r3240049 r3278053 3 3 2025-02-11 - version 2.0.0 4 4 * Major Update 5 2025-04-21 - version 2.1.0 6 * Added simple authentication -
powr-multi-slider/trunk/powr-multi-slider.php
r3249869 r3278053 17 17 * Plugin URI: https://www.powr.io/multi-slider-website-app 18 18 * Description: Capture more eyeballs with images, videos, and banners Drop the widget anywhere in your theme. Or use the POWr icon in your WP text editor to add to a page or post. Edit on your live page by clicking the settings icon. More plugins and tutorials at POWr.io. 19 * Version: 2. 0.019 * Version: 2.1.0 20 20 * Author: POWR 21 21 * Author URI: https://www.powr.io … … 30 30 } 31 31 32 define('POWRIO_PLUGIN_NAME_VERSION', '2. 0.0');32 define('POWRIO_PLUGIN_NAME_VERSION', '2.1.0'); 33 33 define('POWRIO_MULTI_SLIDER_OPTION', 'powr_multi_slider_settings'); 34 34 … … 71 71 { 72 72 $current_user = wp_get_current_user(); 73 $iframe_url = 'https://' . powrio_powr_base_url() . '/api/woo_commerce/auth/apps/multi-slider?email=' . urlencode($current_user->user_email) . '&platform=wordpress&done=1'; 73 $username = $current_user->user_login; 74 $email = urlencode($current_user->user_email); 75 76 $email_param = '?email=' . esc_attr($email); 77 $platform = '&platform=wordpress'; 78 $site_url_param = '&site_url=' . esc_attr(site_url()); 79 $username_param = '&username=' . esc_attr($username); 80 $server_ip = isset($_SERVER['SERVER_ADDR']) ? sanitize_text_field(wp_unslash($_SERVER['SERVER_ADDR'])) : ''; 81 $ip_param = '&site_ip=' . esc_attr($server_ip); 82 $ending = '&done=1'; 83 $iframe_url = 'https://' . powrio_powr_base_url() . '/api/wordpress/auth/apps/multi-slider' . $email_param . $platform . $site_url_param . $username_param . $ip_param . $ending; 74 84 powrio_render_iframe($iframe_url); 75 85 }
Note: See TracChangeset
for help on using the changeset viewer.