Plugin Directory

Changeset 2930584

Timestamp:
06/25/2023 05:28:21 PM (13 months ago)
Author:
valani9099
Message:

Added uninstall file and improved security

Location:
online-active-users/trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • online-active-users/trunk/online-active-users.php

    r2930577 r2930584  
    66 * Description: WordPress Online Active Users plugin enables you to display how many users are currently online active and display user last seen on your Users page in the WordPress admin.
    77 * Tags: wp-online-active-users, users, active-users, online-user, available-users, user-last-seen, currently-active-user, user-online, online-user-status, online users, active users, wordpress online user, wp online users, wordPress users
    8  * Version: 1.4
     8 * Version: 1.
    99 * Author: Webizito
    1010 * Author URI: http://webizito.com/
     
    2525        public function __construct(){
    2626           
     27
    2728            add_action('init', array($this, 'webizito_users_status_init'));
    2829            add_action('wp_loaded', array($this,'webizito_enqueue_script'));
     
    3738            add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array($this, 'webizito_plugin_by_link'), 10, 2 );
    3839            add_action('admin_notices', array($this,'webizito_display_notice'));
    39             register_deactivation_hook( __FILE__, 'webizito_display_notice' );
     40            register_deactivation_hook( __FILE__, array($this,'webizito_display_notice' ));
     41            register_deactivation_hook( __FILE__, array($this,'webizito_delete_transient' ));
    4042           
    4143            $this->webizito_active_user_shortcode();
     
    206208            echo '</div>';
    207209        }
     210
     211
     212
     213
     214
    208215    }
    209216}
  • online-active-users/trunk/readme.txt

    r2930577 r2930584  
    1515Author URI: http://webizito.com/
    1616Text Domain: wp-online-active-users
    17 Version: 1.4
     17Version: 1.
    1818
    1919WP Online Active Users plugin enables you to display how many users are currently online active and display on your Users page in the WordPress admin.
     
    115115* Fixed Two-Factor plugin column content issue
    116116
     117
     118
     119
    117120== Upgrade Notice ==
    118121
     
    131134= 1.4 =
    132135* This version fixed Two-Factor plugin column content issue. Upgrade immediately.
     136
     137
     138
Note: See TracChangeset for help on using the changeset viewer.