Plugin Directory

Changeset 3418092


Ignore:
Timestamp:
12/12/2025 10:02:04 AM (4 months ago)
Author:
ibsofts
Message:

Added support for latest WordPress version (6.9).

Location:
reviews-for-woocommerce
Files:
60 added
13 edited

Legend:

Unmodified
Added
Removed
  • reviews-for-woocommerce/trunk/README.txt

    r3268308 r3418092  
    66Tags: Tags: woocommerce reviews, customer reviews, WooCommerce product reviews, review plugin
    77Requires at least: 4.0
    8 Tested up to: 6.7
    9 Stable tag: 1.0.4
     8Tested up to: 6.9
     9Stable tag: 1.0.5
    1010Requires PHP: 7.4
    1111License: GPLv2 or later
     
    6767
    6868== Changelog ==
     69= 1.0.5 =
     70Added support for latest WordPress version (6.9).
     71
    6972= 1.0.4 =
    7073UI enhancements for an improved user experience.
     
    8689
    8790== Upgrade Notice ==
     91= 1.0.5 =
     92Added support for latest WordPress version (6.9).
     93
    8894= 1.0.4 =
    8995UI enhancements for an improved user experience.
  • reviews-for-woocommerce/trunk/admin/class-reviews-for-woocommerce-admin.php

    r3268308 r3418092  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Reviews_For_Woocommerce
     
    2727     * The ID of this plugin.
    2828     *
    29      * @since    1.0.4
     29     * @since    1.0.5
    3030     * @access   private
    3131     * @var      string    $plugin_name    The ID of this plugin.
     
    3636     * The version of this plugin.
    3737     *
    38      * @since    1.0.4
     38     * @since    1.0.5
    3939     * @access   private
    4040     * @var      string    $version    The current version of this plugin.
     
    4545     * Initialize the class and set its properties.
    4646     *
    47      * @since    1.0.4
     47     * @since    1.0.5
    4848     * @param      string    $plugin_name       The name of this plugin.
    4949     * @param      string    $version    The version of this plugin.
     
    5959     * Register the stylesheets for the admin area.
    6060     *
    61      * @since    1.0.4
     61     * @since    1.0.5
    6262     */
    6363    public function enqueue_styles()
     
    8282     * Register the JavaScript for the admin area.
    8383     *
    84      * @since    1.0.4
     84     * @since    1.0.5
    8585     */
    8686    public function enqueue_scripts()
     
    130130    public function rfw_add_settings_link($links)
    131131    {
    132         $newlink = sprintf("<a href='%s'>%s</a>", admin_url('admin.php?page='), __('Info', 'reviews-for-woocommerce'));
     132        $newlink = sprintf("<a href='%s'>%s</a>", admin_url('admin.php?page=ib-rfw&tab=default'), __('Info', 'reviews-for-woocommerce'));
    133133        $links[] = $newlink;
    134134        return $links;
  • reviews-for-woocommerce/trunk/admin/partials/reviews-for-woocommerce-admin-display.php

    r3268308 r3418092  
    77 *
    88 * @link       https://www.ibsofts.com
    9  * @since      1.0.4
     9 * @since      1.0.5
    1010 *
    1111 * @package    Reviews_For_Woocommerce
  • reviews-for-woocommerce/trunk/includes/class-reviews-for-woocommerce-activator.php

    r3268308 r3418092  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Reviews_For_Woocommerce
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.4
     18 * @since      1.0.5
    1919 * @package    Reviews_For_Woocommerce
    2020 * @subpackage Reviews_For_Woocommerce/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    1.0.4
     31     * @since    1.0.5
    3232     */
    3333    public static function activate() {}
  • reviews-for-woocommerce/trunk/includes/class-reviews-for-woocommerce-deactivator.php

    r3268308 r3418092  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Reviews_For_Woocommerce
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.4
     18 * @since      1.0.5
    1919 * @package    Reviews_For_Woocommerce
    2020 * @subpackage Reviews_For_Woocommerce/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    1.0.4
     31     * @since    1.0.5
    3232     */
    3333    public static function deactivate() {}
  • reviews-for-woocommerce/trunk/includes/class-reviews-for-woocommerce-i18n.php

    r3268308 r3418092  
    88 *
    99 * @link       https://www.ibsofts.com
    10  * @since      1.0.4
     10 * @since      1.0.5
    1111 *
    1212 * @package    Reviews_For_Woocommerce
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.0.4
     22 * @since      1.0.5
    2323 * @package    Reviews_For_Woocommerce
    2424 * @subpackage Reviews_For_Woocommerce/includes
     
    3232     * Load the plugin text domain for translation.
    3333     *
    34      * @since    1.0.4
     34     * @since    1.0.5
    3535     */
    3636    public function load_plugin_textdomain()
  • reviews-for-woocommerce/trunk/includes/class-reviews-for-woocommerce-loader.php

    r3268308 r3418092  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Reviews_For_Woocommerce
     
    2828     * The array of actions registered with WordPress.
    2929     *
    30      * @since    1.0.4
     30     * @since    1.0.5
    3131     * @access   protected
    3232     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3737     * The array of filters registered with WordPress.
    3838     *
    39      * @since    1.0.4
     39     * @since    1.0.5
    4040     * @access   protected
    4141     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4646     * The array of shortcodes registered with WordPress.
    4747     *
    48      * @since    1.0.4
     48     * @since    1.0.5
    4949     * @access   protected
    5050     * @var      array    $shortcodes    The shortcodes registered with WordPress to fire when the plugin loads.
     
    5555     * Initialize the collections used to maintain the actions and filters.
    5656     *
    57      * @since    1.0.4
     57     * @since    1.0.5
    5858     */
    5959    public function __construct()
     
    6868     * Add a new action to the collection to be registered with WordPress.
    6969     *
    70      * @since    1.0.4
     70     * @since    1.0.5
    7171     * @param    string               $hook             The name of the WordPress action that is being registered.
    7272     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    8383     * Add a new filter to the collection to be registered with WordPress.
    8484     *
    85      * @since    1.0.4
     85     * @since    1.0.5
    8686     * @param    string               $hook             The name of the WordPress filter that is being registered.
    8787     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    9898     * Add a new shortcode to the collection to be registered with WordPress
    9999     *
    100      * @since     1.0.4
     100     * @since     1.0.5
    101101     * @param     string        $tag           The name of the new shortcode.
    102102     * @param     object        $component      A reference to the instance of the object on which the shortcode is defined.
     
    112112     * collection.
    113113     *
    114      * @since    1.0.4
     114     * @since    1.0.5
    115115     * @access   private
    116116     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    139139     * Register the filters and actions with WordPress.
    140140     *
    141      * @since    1.0.4
     141     * @since    1.0.5
    142142     */
    143143    public function run()
  • reviews-for-woocommerce/trunk/includes/class-reviews-for-woocommerce.php

    r3268308 r3418092  
    88 *
    99 * @link       https://www.ibsofts.com
    10  * @since      1.0.4
     10 * @since      1.0.5
    1111 *
    1212 * @package    Reviews_For_Woocommerce
     
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.4
     25 * @since      1.0.5
    2626 * @package    Reviews_For_Woocommerce
    2727 * @subpackage Reviews_For_Woocommerce/includes
     
    3535     * the plugin.
    3636     *
    37      * @since    1.0.4
     37     * @since    1.0.5
    3838     * @access   protected
    3939     * @var      Reviews_For_Woocommerce_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4444     * The unique identifier of this plugin.
    4545     *
    46      * @since    1.0.4
     46     * @since    1.0.5
    4747     * @access   protected
    4848     * @var      string    $plugin_name    The string used to uniquely identify this plugin.
     
    5353     * The current version of the plugin.
    5454     *
    55      * @since    1.0.4
     55     * @since    1.0.5
    5656     * @access   protected
    5757     * @var      string    $version    The current version of the plugin.
     
    6666     * the public-facing side of the site.
    6767     *
    68      * @since    1.0.4
     68     * @since    1.0.5
    6969     */
    7070    public function __construct()
     
    7373            $this->version = REVFWOO_VERSION;
    7474        } else {
    75             $this->version = '1.0.4';
     75            $this->version = '1.0.5';
    7676        }
    7777        $this->plugin_name = 'reviews-for-woocommerce';
     
    9696     * with WordPress.
    9797     *
    98      * @since    1.0.4
     98     * @since    1.0.5
    9999     * @access   private
    100100     */
     
    134134     * with WordPress.
    135135     *
    136      * @since    1.0.4
     136     * @since    1.0.5
    137137     * @access   private
    138138     */
     
    149149     * of the plugin.
    150150     *
    151      * @since    1.0.4
     151     * @since    1.0.5
    152152     * @access   private
    153153     */
     
    167167     * of the plugin.
    168168     *
    169      * @since    1.0.4
     169     * @since    1.0.5
    170170     * @access   private
    171171     */
     
    184184     * Run the loader to execute all of the hooks with WordPress.
    185185     *
    186      * @since    1.0.4
     186     * @since    1.0.5
    187187     */
    188188    public function run()
     
    195195     * WordPress and to define internationalization functionality.
    196196     *
    197      * @since     1.0.4
     197     * @since     1.0.5
    198198     * @return    string    The name of the plugin.
    199199     */
     
    206206     * The reference to the class that orchestrates the hooks with the plugin.
    207207     *
    208      * @since     1.0.4
     208     * @since     1.0.5
    209209     * @return    Reviews_For_Woocommerce_Loader    Orchestrates the hooks of the plugin.
    210210     */
     
    217217     * Retrieve the version number of the plugin.
    218218     *
    219      * @since     1.0.4
     219     * @since     1.0.5
    220220     * @return    string    The version number of the plugin.
    221221     */
  • reviews-for-woocommerce/trunk/public/class-reviews-for-woocommerce-public.php

    r3268308 r3418092  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Reviews_For_Woocommerce
     
    2727     * The ID of this plugin.
    2828     *
    29      * @since    1.0.4
     29     * @since    1.0.5
    3030     * @access   private
    3131     * @var      string    $plugin_name    The ID of this plugin.
     
    3636     * The version of this plugin.
    3737     *
    38      * @since    1.0.4
     38     * @since    1.0.5
    3939     * @access   private
    4040     * @var      string    $version    The current version of this plugin.
     
    4545     * Initialize the class and set its properties.
    4646     *
    47      * @since    1.0.4
     47     * @since    1.0.5
    4848     * @param      string    $plugin_name       The name of the plugin.
    4949     * @param      string    $version    The version of this plugin.
     
    5959     * Register the stylesheets for the public-facing side of the site.
    6060     *
    61      * @since    1.0.4
     61     * @since    1.0.5
    6262     */
    6363    public function enqueue_styles()
     
    8484     * Register the JavaScript for the public-facing side of the site.
    8585     *
    86      * @since    1.0.4
     86     * @since    1.0.5
    8787     */
    8888    public function enqueue_scripts()
  • reviews-for-woocommerce/trunk/public/partials/reviews-for-woocommerce-public-display.php

    r3268308 r3418092  
    77 *
    88 * @link       https://www.ibsofts.com
    9  * @since      1.0.4
     9 * @since      1.0.5
    1010 *
    1111 * @package    Reviews_For_Woocommerce
  • reviews-for-woocommerce/trunk/public/partials/template-slider.php

    r3268308 r3418092  
    55 *
    66 * @link       https://www.ibsofts.com
    7  * @since      1.0.4
     7 * @since      1.0.5
    88 *
    99 * @package    Reviews_For_Woocommerce
  • reviews-for-woocommerce/trunk/reviews-for-woocommerce.php

    r3268308 r3418092  
    1010 *
    1111 * @link              https://www.ibsofts.com
    12  * @since             1.0.4
     12 * @since             1.0.5
    1313 * @package           Reviews_For_Woocommerce
    1414 *
     
    1717 * Plugin URI:        https://www.ibsofts.com/plugins/reviews-for-woocommerce
    1818 * Description:       This plugin provides different templates to show WooCommerce reviews of any product.
    19  * Version:           1.0.4
     19 * Version:           1.0.5
    2020 * Author:            iB Softs
    2121 * Author URI:        https://www.ibsofts.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define('REVFWOO_VERSION', '1.0.4');
     38define('REVFWOO_VERSION', '1.0.5');
    3939define('REVFWOO_PLUGIN_BASENAME', plugin_basename(__FILE__));
    4040
     
    9191 * not affect the page life cycle.
    9292 *
    93  * @since    1.0.4
     93 * @since    1.0.5
    9494 */
    9595if (! function_exists('revfwoo_run')) {
  • reviews-for-woocommerce/trunk/uninstall.php

    r3268308 r3418092  
    2121 *
    2222 * @link       https://www.ibsofts.com
    23  * @since      1.0.4
     23 * @since      1.0.5
    2424 *
    2525 * @package    Reviews_For_Woocommerce
Note: See TracChangeset for help on using the changeset viewer.