Plugin Directory

Changeset 3297942


Ignore:
Timestamp:
05/21/2025 09:58:48 AM (9 months ago)
Author:
TraceMyIP
Message:

Version 2.67

  • Incremental push update rev for v2.65
Location:
tracemyip-visitor-analytics-ip-tracking-control/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tracemyip-visitor-analytics-ip-tracking-control/trunk/TraceMyIP-Wordpress-Plugin.php

    r3297913 r3297942  
    55    Plugin URI: https://www.tracemyip.org
    66    Description: Website visitor IP address activity tracking, IP analytics, visitor email alerts, IP changes tracker and visitor IP address blocking. Tag visitors IPs, track, create email alerts, control and manage pages, links and protect contact forms. GDPR compliant. For visitor tracker setup instructions, see <a href="admin.php?page=tmip_lnk_wp_settings"><b>plugin settings</b></a>.
    7     Version: 2.66
     7    Version: 2.67
    88    Author: TraceMyIP.org
    99    Author URI: https://www.TraceMyIP.org
     
    1212    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1313*/
    14 if (!defined('TMIP_VERSION') )      define('TMIP_VERSION', '2.66');
     14if (!defined('TMIP_VERSION') )      define('TMIP_VERSION', '2.67');
    1515
    1616### SET CONSTANTS ############################################
     
    2121
    2222define("tmip_plugin_dir_name",          'tracemyip-visitor-analytics-ip-tracking-control', false);
    23 define("tmip_enable_user_notices",      0);     // User notices on WP Dashboard: 1-enable
     23define("tmip_enable_user_notices",      1);     // User notices on WP Dashboard: 1-enable
    2424define("tmip_enable_meta_rating",       2);     // Show rate section. 1-post selected rating, 2-show transitional screen
    2525define("tmip_enable_meta_rating_menu",  1);     // Show rate section menu link
     
    7979# 052125092856
    8080// Initialize user notices: Reset by $tmip_notices_debug
    81 if (tmip_enable_user_notices==1) {
    82     require_once(tmip_plugin_path . 'includes/classes/class-tmip-system-notices.php');
    83     new TMIPSystemNotices();
    84     // Reset notification statuses
    85     if (tmip_user_executed) {
    86         if (!get_option(tmip_user_notice_install_date)) update_option(tmip_user_notice_install_date, time());
    87         if (!empty($tmip_notices_debug) and $tmip_notices_debug===99) { // Reset notices state
    88             delete_option(tmip_user_notice_install_date);
    89             delete_option(tmip_user_notice_views);
    90             delete_option(tmip_user_notice_dismissed);
    91             delete_transient(tmip_user_notice_snoozed);
    92         }
    93     }
     81$tmipSysNTF=tmip_plugin_path . 'includes/classes/class-tmip-system-notices.php';
     82if (tmip_enable_user_notices==1 and file_exists($tmipSysNTF)) {
     83    include_once($tmipSysNTF);
     84    new TMIPSystemNotices();
     85    // Reset notification statuses
     86    if (tmip_user_executed) {
     87        if (!get_option(tmip_user_notice_install_date)) update_option(tmip_user_notice_install_date, time());
     88        if (!empty($tmip_notices_debug) and $tmip_notices_debug===99) { // Reset notices state
     89            delete_option(tmip_user_notice_install_date);
     90            delete_option(tmip_user_notice_views);
     91            delete_option(tmip_user_notice_dismissed);
     92            delete_transient(tmip_user_notice_snoozed);
     93        }
     94    }
    9495}
    9596
  • tracemyip-visitor-analytics-ip-tracking-control/trunk/readme.txt

    r3297913 r3297942  
    66Tested up to: 6.8
    77Requires PHP: 5.6
    8 Stable tag: 2.66
     8Stable tag: 2.67
    99License: GPLv2 (or later)
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    174174== Changelog ==
    175175
     176= Version 2.67 =
     177- Incremental push update rev for v2.65
     178
    176179= Version 2.66 =
    177 - Provisional updates for WordPress v6.8
     180- Provisional updates for 2.65 on WordPress v6.8
    178181
    179182= Version 2.65 =
Note: See TracChangeset for help on using the changeset viewer.