Changeset 2952359
- Timestamp:
- 08/11/2023 04:14:52 PM (3 years ago)
- Location:
- disable-user-login
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.7 (copied) (copied from disable-user-login/trunk)
-
tags/1.3.7/disable-user-login.php (modified) (1 diff)
-
tags/1.3.7/includes/class-ss-disable-user-login-plugin.php (modified) (3 diffs)
-
tags/1.3.7/readme.txt (modified) (2 diffs)
-
trunk/disable-user-login.php (modified) (1 diff)
-
trunk/includes/class-ss-disable-user-login-plugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
disable-user-login/tags/1.3.7/disable-user-login.php
r2944640 r2952359 4 4 * Plugin URI: http://wordpress.org/plugins/disable-user-login 5 5 * Description: Provides the ability to disable user accounts and prevent them from logging in. 6 * Version: 1.3. 66 * Version: 1.3.7 7 7 * 8 8 * Author: Saint Systems -
disable-user-login/tags/1.3.7/includes/class-ss-disable-user-login-plugin.php
r2944640 r2952359 16 16 * @var string 17 17 */ 18 private static $version = '1.3. 6';18 private static $version = '1.3.7'; 19 19 20 20 /** … … 126 126 } 127 127 128 if ( is_network_admin() ) { 129 add_action( 'network_admin_notices', array( $this, 'bulk_disable_user_notices' ) ); 130 } 131 128 132 // Disabled hook 129 133 add_action( 'disable_user_login.user_disabled', array( $this, 'force_logout' ), 10, 1 ); … … 137 141 add_filter( 'user_row_actions', array( $this, 'add_quick_links' ), 10, 2 ); 138 142 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 ); 139 148 140 149 } //end function add_hooks -
disable-user-login/tags/1.3.7/readme.txt
r2944640 r2952359 4 4 Tags: users, user, login, account, disable 5 5 Requires at least: 4.7.0 6 Tested up to: 6. 1.16 Tested up to: 6.3 7 7 Requires PHP: 5.6 8 Stable tag: 1.3.6 8 Stable tag: 1.3.7 9 Version: 1.3.7 9 10 License: GPLv3 10 11 … … 49 50 == Changelog == 50 51 52 = 1.3.7 = 53 * Add hooks for multisite. 54 51 55 = 1.3.6 = 52 56 * Permission fix on quick links. -
disable-user-login/trunk/disable-user-login.php
r2944640 r2952359 4 4 * Plugin URI: http://wordpress.org/plugins/disable-user-login 5 5 * Description: Provides the ability to disable user accounts and prevent them from logging in. 6 * Version: 1.3. 66 * Version: 1.3.7 7 7 * 8 8 * Author: Saint Systems -
disable-user-login/trunk/includes/class-ss-disable-user-login-plugin.php
r2944640 r2952359 16 16 * @var string 17 17 */ 18 private static $version = '1.3. 6';18 private static $version = '1.3.7'; 19 19 20 20 /** … … 126 126 } 127 127 128 if ( is_network_admin() ) { 129 add_action( 'network_admin_notices', array( $this, 'bulk_disable_user_notices' ) ); 130 } 131 128 132 // Disabled hook 129 133 add_action( 'disable_user_login.user_disabled', array( $this, 'force_logout' ), 10, 1 ); … … 137 141 add_filter( 'user_row_actions', array( $this, 'add_quick_links' ), 10, 2 ); 138 142 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 ); 139 148 140 149 } //end function add_hooks -
disable-user-login/trunk/readme.txt
r2944640 r2952359 4 4 Tags: users, user, login, account, disable 5 5 Requires at least: 4.7.0 6 Tested up to: 6. 1.16 Tested up to: 6.3 7 7 Requires PHP: 5.6 8 Stable tag: 1.3.6 8 Stable tag: 1.3.7 9 Version: 1.3.7 9 10 License: GPLv3 10 11 … … 49 50 == Changelog == 50 51 52 = 1.3.7 = 53 * Add hooks for multisite. 54 51 55 = 1.3.6 = 52 56 * Permission fix on quick links.
Note: See TracChangeset
for help on using the changeset viewer.