Plugin Directory

Changeset 3278053


Ignore:
Timestamp:
04/21/2025 10:33:25 AM (9 months ago)
Author:
powr
Message:

Update plugin (2.1.0) version

Location:
powr-multi-slider
Files:
8 added
3 edited

Legend:

Unmodified
Added
Removed
  • powr-multi-slider/trunk/README.md

    r3251594 r3278053  
    44Tags: slider, carousel, image slider, video slider, testimonial slider
    55Requires at least: 3.0
    6 Tested up to: 6.7
     6Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 2.0.0
     8Stable tag: 2.1.0
    99License: GPL-3.0-or-later
    1010URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    181181- **Service**: POWR.io API
    182182- **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.
    184184- **When**: This data is sent when the admin settings page is accessed or when the shortcode is used to display the plugin.
    185185- **Service Provider**: POWR.io
  • powr-multi-slider/trunk/changelog.txt

    r3240049 r3278053  
    332025-02-11 - version 2.0.0
    44* Major Update
     52025-04-21 - version 2.1.0
     6* Added simple authentication
  • powr-multi-slider/trunk/powr-multi-slider.php

    r3249869 r3278053  
    1717 * Plugin URI:        https://www.powr.io/multi-slider-website-app
    1818 * 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.0
     19 * Version:           2.1.0
    2020 * Author:            POWR
    2121 * Author URI:        https://www.powr.io
     
    3030 }
    3131 
    32  define('POWRIO_PLUGIN_NAME_VERSION', '2.0.0');
     32 define('POWRIO_PLUGIN_NAME_VERSION', '2.1.0');
    3333 define('POWRIO_MULTI_SLIDER_OPTION', 'powr_multi_slider_settings');
    3434 
     
    7171     {
    7272         $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;
    7484         powrio_render_iframe($iframe_url);
    7585     }
Note: See TracChangeset for help on using the changeset viewer.