Plugin Directory

Changeset 2952359


Ignore:
Timestamp:
08/11/2023 04:14:52 PM (3 years ago)
Author:
anderly
Message:

Release 1.3.7, see readme.txt for the changelog.

Location:
disable-user-login
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • disable-user-login/tags/1.3.7/disable-user-login.php

    r2944640 r2952359  
    44 * Plugin URI:  http://wordpress.org/plugins/disable-user-login
    55 * Description: Provides the ability to disable user accounts and prevent them from logging in.
    6  * Version:     1.3.6
     6 * Version:     1.3.7
    77 *
    88 * Author:      Saint Systems
  • disable-user-login/tags/1.3.7/includes/class-ss-disable-user-login-plugin.php

    r2944640 r2952359  
    1616     * @var string
    1717     */
    18     private static $version = '1.3.6';
     18    private static $version = '1.3.7';
    1919
    2020    /**
     
    126126        }
    127127
     128        if ( is_network_admin() ) {
     129            add_action( 'network_admin_notices',      array( $this, 'bulk_disable_user_notices'   )        );
     130        }
     131
    128132        // Disabled hook
    129133        add_action( 'disable_user_login.user_disabled', array( $this, 'force_logout' ), 10, 1 );
     
    137141        add_filter( 'user_row_actions',           array( $this, 'add_quick_links'             ), 10, 2 );
    138142        add_filter( 'wp_is_application_passwords_available_for_user', array( $this, 'maybe_disable_application_passwords_for_user' ), 10, 2 );
     143
     144        // Multisite Filters
     145        add_filter( 'ms_user_row_actions',        array( $this, 'add_quick_links'             ), 10, 2 );// Adds custom action link to network's users page
     146        add_filter( 'bulk_actions-users-network', array( $this, 'bulk_action_disable_users'   )        );
     147        add_filter( 'handle_network_bulk_actions-users-network', array( $this, 'handle_bulk_disable_users' ), 10, 3 );
    139148
    140149    } //end function add_hooks
  • disable-user-login/tags/1.3.7/readme.txt

    r2944640 r2952359  
    44Tags: users, user, login, account, disable
    55Requires at least: 4.7.0
    6 Tested up to: 6.1.1
     6Tested up to: 6.3
    77Requires PHP: 5.6
    8 Stable tag: 1.3.6
     8Stable tag: 1.3.7
     9Version: 1.3.7
    910License: GPLv3
    1011
     
    4950== Changelog ==
    5051
     52= 1.3.7 =
     53* Add hooks for multisite.
     54
    5155= 1.3.6 =
    5256* Permission fix on quick links.
  • disable-user-login/trunk/disable-user-login.php

    r2944640 r2952359  
    44 * Plugin URI:  http://wordpress.org/plugins/disable-user-login
    55 * Description: Provides the ability to disable user accounts and prevent them from logging in.
    6  * Version:     1.3.6
     6 * Version:     1.3.7
    77 *
    88 * Author:      Saint Systems
  • disable-user-login/trunk/includes/class-ss-disable-user-login-plugin.php

    r2944640 r2952359  
    1616     * @var string
    1717     */
    18     private static $version = '1.3.6';
     18    private static $version = '1.3.7';
    1919
    2020    /**
     
    126126        }
    127127
     128        if ( is_network_admin() ) {
     129            add_action( 'network_admin_notices',      array( $this, 'bulk_disable_user_notices'   )        );
     130        }
     131
    128132        // Disabled hook
    129133        add_action( 'disable_user_login.user_disabled', array( $this, 'force_logout' ), 10, 1 );
     
    137141        add_filter( 'user_row_actions',           array( $this, 'add_quick_links'             ), 10, 2 );
    138142        add_filter( 'wp_is_application_passwords_available_for_user', array( $this, 'maybe_disable_application_passwords_for_user' ), 10, 2 );
     143
     144        // Multisite Filters
     145        add_filter( 'ms_user_row_actions',        array( $this, 'add_quick_links'             ), 10, 2 );// Adds custom action link to network's users page
     146        add_filter( 'bulk_actions-users-network', array( $this, 'bulk_action_disable_users'   )        );
     147        add_filter( 'handle_network_bulk_actions-users-network', array( $this, 'handle_bulk_disable_users' ), 10, 3 );
    139148
    140149    } //end function add_hooks
  • disable-user-login/trunk/readme.txt

    r2944640 r2952359  
    44Tags: users, user, login, account, disable
    55Requires at least: 4.7.0
    6 Tested up to: 6.1.1
     6Tested up to: 6.3
    77Requires PHP: 5.6
    8 Stable tag: 1.3.6
     8Stable tag: 1.3.7
     9Version: 1.3.7
    910License: GPLv3
    1011
     
    4950== Changelog ==
    5051
     52= 1.3.7 =
     53* Add hooks for multisite.
     54
    5155= 1.3.6 =
    5256* Permission fix on quick links.
Note: See TracChangeset for help on using the changeset viewer.