Plugin Directory

Changeset 3472502


Ignore:
Timestamp:
03/02/2026 09:05:41 AM (4 weeks ago)
Author:
rocketcomunicazione
Message:

2.3.2

Location:
rc-site-manager-optimization/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rc-site-manager-optimization/trunk/rc-site-manager-optimization.php

    r3465880 r3472502  
    33 * Plugin Name: RC Site Manager & Optimization
    44 * Description: All-in-one Wordpress manager: control WooCommerce, SEO, caching, media, and multilingual tools from one dashboard.
    5  * Version: 2.3.1
     5 * Version: 2.3.3
    66 * Author: Rocket Comunicazione
    77 * Author URI: https://www.rocketcomunicazione.com
     
    1818
    1919
    20 define('RC_SM_PLUGIN_VERSION', '2.3.1');
     20define('RC_SM_PLUGIN_VERSION', '2.3.3');
    2121
    2222define( 'RC_SM_SITE_URL', home_url() );
     
    5050define('RC_SM_TABLE_SETTINGS', $wpdb->prefix . 'rc_sm_tb_settings');
    5151define('RC_SM_TABLE_PREMIUM_ULTRA_SPEED', $wpdb->prefix . 'rc_sm_tb_premium_ultra_speed');
     52define('RC_SM_TABLE_PREMIUM_CUSTOM_SOFTWARE', $wpdb->prefix . 'rc_sm_tb_premium_custom_software');
    5253
    5354if (RC_SM_SITE_URL === 'https://www.rocketcomunicazione.com') {
     
    7677}
    7778
     79include plugin_dir_path(__FILE__) . 'premium/index.php';
    7880include plugin_dir_path(__FILE__) . 'premium/ultra_speed/index.php';
     81include plugin_dir_path(__FILE__) . 'premium/custom_software_1/index.php';
     82
    7983
    8084include plugin_dir_path(__FILE__) . 'settings/index.php';
     
    208212    }
    209213
    210     // Ultra Speed: accesso riservato solo a utenti specifici
     214    // Ultra Speed e Custom Software 1: accesso riservato solo a utenti specifici
    211215    $current_user = wp_get_current_user();
    212216    $email = $current_user->user_email;
    213217   
    214218    if (strpos($email, 'radames.dicembrino@') !== false || strpos($email, 'r.dicembrino@') !== false) {
     219
    215220        add_submenu_page(
    216221            'rc_sm_dashboard',
     
    221226            'rc_sm_premium_ultra_speed_page'
    222227        );
     228
     229        add_submenu_page(
     230            'rc_sm_dashboard',
     231            __('Custom Software 1', 'rc-site-manager-optimization'),
     232            __('Custom Software 1', 'rc-site-manager-optimization'),
     233            'manage_options',
     234            'rc_sm_premium_custom_software_1',
     235            'rc_sm_premium_custom_software_1_page'
     236        );
     237
    223238    }
    224239
     
    299314    ));
    300315}
     316
     317
     318
     319include plugin_dir_path(__FILE__) . 'includes/admin.php';
  • rc-site-manager-optimization/trunk/readme.txt

    r3465880 r3472502  
    55Tested up to: 6.9
    66Requires PHP: 8.1
    7 Stable tag: 2.3.1
     7Stable tag: 2.3.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    160160== Changelog ==
    161161
     162
     163= 2.3.3 - March 2, 2026 =
     164* Minor bug fixes and improvement
     165
     166= 2.3.2 - March 1, 2026 =
     167* Minor bug fixes and improvement
     168
    162169= 2.3.1 - February 20, 2026 =
    163 * Changed .rc_sm_bs_col_align display from flow to contents
     170* Minor bug fixes and improvement
    164171
    165172= 2.3.0 - February 15, 2026 =
     
    270277== Upgrade Notice ==
    271278
     279= 2.3.3 - March 2, 2026 =
     280Minor bug fixes.
     281
     282= 2.3.2 - March 1, 2026 =
     283Minor bug fixes.
     284
    272285= 2.3.1 - February 20, 2026 =
    273 Changed .rc_sm_bs_col_align display from flow to contents.
     286Minor bug fixes.
    274287
    275288= 2.3.0 - February 15, 2026 =
Note: See TracChangeset for help on using the changeset viewer.