2007-05-25 07:16:21 +00:00
<? php
2008-10-02 01:03:26 +00:00
/**
* WordPress user administration API.
*
* @package WordPress
* @subpackage Administration
*/
/**
* Creates a new user from the "Users" form using $_POST information.
*
2013-12-24 18:57:12 +00:00
* @since 2.0.0
2008-10-02 01:03:26 +00:00
*
2015-05-29 20:17:26 +00:00
* @return int|WP_Error WP_Error or User ID.
2008-10-02 01:03:26 +00:00
*/
2007-05-25 07:16:21 +00:00
function add_user () {
2012-01-05 20:38:40 +00:00
return edit_user ();
2007-05-25 07:16:21 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2009-01-06 22:00:05 +00:00
* Edit user settings based on contents of $_POST
2008-10-02 01:03:26 +00:00
*
2009-01-06 22:00:05 +00:00
* Used on user-edit.php and profile.php to manage and process user options, passwords etc.
2008-10-02 01:03:26 +00:00
*
2013-12-24 18:57:12 +00:00
* @since 2.0.0
2008-10-02 01:03:26 +00:00
*
* @param int $user_id Optional. User ID.
2015-05-29 20:17:26 +00:00
* @return int|WP_Error user id of the updated user
2008-10-02 01:03:26 +00:00
*/
2007-05-25 07:16:21 +00:00
function edit_user ( $user_id = 0 ) {
2015-05-28 21:41:30 +00:00
$wp_roles = wp_roles ();
2017-11-30 23:11:00 +00:00
$user = new stdClass ;
2018-03-19 20:29:34 +00:00
$user_id = ( int ) $user_id ;
2010-11-15 06:38:10 +00:00
if ( $user_id ) {
2017-11-30 23:11:00 +00:00
$update = true ;
2018-03-19 20:29:34 +00:00
$user -> ID = $user_id ;
2017-11-30 23:11:00 +00:00
$userdata = get_userdata ( $user_id );
2013-03-01 17:14:09 +00:00
$user -> user_login = wp_slash ( $userdata -> user_login );
2007-05-25 07:16:21 +00:00
} else {
$update = false ;
}
2017-11-30 23:11:00 +00:00
if ( ! $update && isset ( $_POST [ 'user_login' ] ) ) {
$user -> user_login = sanitize_user ( $_POST [ 'user_login' ], true );
}
2007-05-25 07:16:21 +00:00
$pass1 = $pass2 = '' ;
2017-11-30 23:11:00 +00:00
if ( isset ( $_POST [ 'pass1' ] ) ) {
2013-06-25 11:14:50 +00:00
$pass1 = $_POST [ 'pass1' ];
2017-11-30 23:11:00 +00:00
}
if ( isset ( $_POST [ 'pass2' ] ) ) {
2013-06-25 11:14:50 +00:00
$pass2 = $_POST [ 'pass2' ];
2017-11-30 23:11:00 +00:00
}
2007-05-25 07:16:21 +00:00
2018-03-19 20:29:34 +00:00
if ( isset ( $_POST [ 'role' ] ) && current_user_can ( 'promote_users' ) && ( ! $user_id || current_user_can ( 'promote_user' , $user_id ) ) ) {
$new_role = sanitize_text_field ( $_POST [ 'role' ] );
2009-01-06 22:00:05 +00:00
2018-03-19 20:29:34 +00:00
// If the new role isn't editable by the logged-in user die with error.
2009-01-06 22:00:05 +00:00
$editable_roles = get_editable_roles ();
2017-11-30 23:11:00 +00:00
if ( ! empty ( $new_role ) && empty ( $editable_roles [ $new_role ] ) ) {
2017-06-25 18:46:44 +00:00
wp_die ( __ ( 'Sorry, you are not allowed to give users that role.' ), 403 );
2017-11-30 23:11:00 +00:00
}
2018-03-19 20:29:34 +00:00
$potential_role = isset ( $wp_roles -> role_objects [ $new_role ] ) ? $wp_roles -> role_objects [ $new_role ] : false ;
/*
* Don't let anyone with 'promote_users' edit their own role to something without it.
* Multisite super admins can freely edit their roles, they possess all caps.
*/
if (
( is_multisite () && current_user_can ( 'manage_network_users' ) ) ||
$user_id !== get_current_user_id () ||
( $potential_role && $potential_role -> has_cap ( 'promote_users' ) )
) {
$user -> role = $new_role ;
}
2007-05-25 07:16:21 +00:00
}
2017-11-30 23:11:00 +00:00
if ( isset ( $_POST [ 'email' ] ) ) {
2014-10-19 20:30:19 +00:00
$user -> user_email = sanitize_text_field ( wp_unslash ( $_POST [ 'email' ] ) );
2017-11-30 23:11:00 +00:00
}
2013-03-01 16:28:40 +00:00
if ( isset ( $_POST [ 'url' ] ) ) {
2017-11-30 23:11:00 +00:00
if ( empty ( $_POST [ 'url' ] ) || $_POST [ 'url' ] == 'http://' ) {
2009-05-13 22:41:05 +00:00
$user -> user_url = '' ;
} else {
2013-03-01 16:28:40 +00:00
$user -> user_url = esc_url_raw ( $_POST [ 'url' ] );
2017-11-30 23:11:00 +00:00
$protocols = implode ( '|' , array_map ( 'preg_quote' , wp_allowed_protocols () ) );
$user -> user_url = preg_match ( '/^(' . $protocols . '):/is' , $user -> user_url ) ? $user -> user_url : 'http://' . $user -> user_url ;
2009-05-13 22:41:05 +00:00
}
2007-05-25 07:16:21 +00:00
}
2017-11-30 23:11:00 +00:00
if ( isset ( $_POST [ 'first_name' ] ) ) {
2013-03-01 16:28:40 +00:00
$user -> first_name = sanitize_text_field ( $_POST [ 'first_name' ] );
2017-11-30 23:11:00 +00:00
}
if ( isset ( $_POST [ 'last_name' ] ) ) {
2013-03-01 16:28:40 +00:00
$user -> last_name = sanitize_text_field ( $_POST [ 'last_name' ] );
2017-11-30 23:11:00 +00:00
}
if ( isset ( $_POST [ 'nickname' ] ) ) {
2013-03-01 16:28:40 +00:00
$user -> nickname = sanitize_text_field ( $_POST [ 'nickname' ] );
2017-11-30 23:11:00 +00:00
}
if ( isset ( $_POST [ 'display_name' ] ) ) {
2013-03-01 16:28:40 +00:00
$user -> display_name = sanitize_text_field ( $_POST [ 'display_name' ] );
2017-11-30 23:11:00 +00:00
}
2013-03-01 16:28:40 +00:00
2017-11-30 23:11:00 +00:00
if ( isset ( $_POST [ 'description' ] ) ) {
2013-03-01 16:28:40 +00:00
$user -> description = trim ( $_POST [ 'description' ] );
2017-11-30 23:11:00 +00:00
}
2009-09-14 13:57:48 +00:00
2013-09-24 18:14:09 +00:00
foreach ( wp_get_user_contact_methods ( $user ) as $method => $name ) {
2017-11-30 23:11:00 +00:00
if ( isset ( $_POST [ $method ] ) ) {
$user -> $method = sanitize_text_field ( $_POST [ $method ] );
}
2009-09-14 13:57:48 +00:00
}
if ( $update ) {
2017-11-30 23:11:00 +00:00
$user -> rich_editing = isset ( $_POST [ 'rich_editing' ] ) && 'false' === $_POST [ 'rich_editing' ] ? 'false' : 'true' ;
$user -> syntax_highlighting = isset ( $_POST [ 'syntax_highlighting' ] ) && 'false' === $_POST [ 'syntax_highlighting' ] ? 'false' : 'true' ;
$user -> admin_color = isset ( $_POST [ 'admin_color' ] ) ? sanitize_text_field ( $_POST [ 'admin_color' ] ) : 'fresh' ;
2013-03-01 16:28:40 +00:00
$user -> show_admin_bar_front = isset ( $_POST [ 'admin_bar_front' ] ) ? 'true' : 'false' ;
2017-11-30 23:11:00 +00:00
$user -> locale = '' ;
2016-10-03 07:04:29 +00:00
if ( isset ( $_POST [ 'locale' ] ) ) {
$locale = sanitize_text_field ( $_POST [ 'locale' ] );
2016-11-08 23:01:31 +00:00
if ( 'site-default' === $locale ) {
2016-10-03 07:04:29 +00:00
$locale = '' ;
2016-11-16 20:12:31 +00:00
} elseif ( '' === $locale ) {
2016-11-08 23:01:31 +00:00
$locale = 'en_US' ;
2016-11-16 20:12:31 +00:00
} elseif ( ! in_array ( $locale , get_available_languages (), true ) ) {
$locale = '' ;
2016-10-03 07:04:29 +00:00
}
2016-11-08 23:01:31 +00:00
$user -> locale = $locale ;
2016-10-03 07:04:29 +00:00
}
2009-08-06 21:59:52 +00:00
}
2007-05-25 07:16:21 +00:00
2013-03-01 16:28:40 +00:00
$user -> comment_shortcuts = isset ( $_POST [ 'comment_shortcuts' ] ) && 'true' == $_POST [ 'comment_shortcuts' ] ? 'true' : '' ;
2008-12-09 18:03:31 +00:00
2008-08-21 17:40:38 +00:00
$user -> use_ssl = 0 ;
2017-11-30 23:11:00 +00:00
if ( ! empty ( $_POST [ 'use_ssl' ] ) ) {
2008-08-21 17:40:38 +00:00
$user -> use_ssl = 1 ;
2017-11-30 23:11:00 +00:00
}
2008-08-21 17:40:38 +00:00
2007-05-25 07:16:21 +00:00
$errors = new WP_Error ();
/* checking that username has been typed */
2017-11-30 23:11:00 +00:00
if ( $user -> user_login == '' ) {
2013-03-07 06:00:16 +00:00
$errors -> add ( 'user_login' , __ ( '<strong>ERROR</strong>: Please enter a username.' ) );
2017-11-30 23:11:00 +00:00
}
2015-09-25 04:44:25 +00:00
2015-09-24 17:49:25 +00:00
/* checking that nickname has been typed */
2015-09-25 04:44:25 +00:00
if ( $update && empty ( $user -> nickname ) ) {
$errors -> add ( 'nickname' , __ ( '<strong>ERROR</strong>: Please enter a nickname.' ) );
2015-09-24 17:49:25 +00:00
}
2015-09-25 04:44:25 +00:00
2013-12-01 17:54:10 +00:00
/**
* Fires before the password and confirm password fields are checked for congruity.
*
* @since 1.5.1
*
* @param string $user_login The username.
2017-10-02 22:03:33 +00:00
* @param string $pass1 The password (passed by reference).
* @param string $pass2 The confirmed password (passed by reference).
2013-12-01 17:54:10 +00:00
*/
2013-03-07 06:00:16 +00:00
do_action_ref_array ( 'check_passwords' , array ( $user -> user_login , & $pass1 , & $pass2 ) );
2007-05-25 07:16:21 +00:00
2016-03-22 23:07:27 +00:00
// Check for blank password when adding a user.
if ( ! $update && empty ( $pass1 ) ) {
$errors -> add ( 'pass' , __ ( '<strong>ERROR</strong>: Please enter a password.' ), array ( 'form-field' => 'pass1' ) );
}
// Check for "\" in password.
2017-11-30 23:11:00 +00:00
if ( false !== strpos ( wp_unslash ( $pass1 ), '\\' ) ) {
2007-11-01 06:23:16 +00:00
$errors -> add ( 'pass' , __ ( '<strong>ERROR</strong>: Passwords may not contain the character "\\".' ), array ( 'form-field' => 'pass1' ) );
2016-03-22 23:07:27 +00:00
}
2007-05-25 07:16:21 +00:00
2016-03-22 23:07:27 +00:00
// Checking the password has been typed twice the same.
if ( ( $update || ! empty ( $pass1 ) ) && $pass1 != $pass2 ) {
2015-10-10 13:22:26 +00:00
$errors -> add ( 'pass' , __ ( '<strong>ERROR</strong>: Please enter the same password in both password fields.' ), array ( 'form-field' => 'pass1' ) );
2016-03-22 23:07:27 +00:00
}
2007-05-25 07:16:21 +00:00
2017-11-30 23:11:00 +00:00
if ( ! empty ( $pass1 ) ) {
2007-05-25 07:16:21 +00:00
$user -> user_pass = $pass1 ;
2017-11-30 23:11:00 +00:00
}
2007-05-25 07:16:21 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $update && isset ( $_POST [ 'user_login' ] ) && ! validate_username ( $_POST [ 'user_login' ] ) ) {
$errors -> add ( 'user_login' , __ ( '<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username.' ) );
}
2007-05-25 07:16:21 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $update && username_exists ( $user -> user_login ) ) {
$errors -> add ( 'user_login' , __ ( '<strong>ERROR</strong>: This username is already registered. Please choose another one.' ) );
}
2007-05-25 07:16:21 +00:00
2015-11-22 03:51:28 +00:00
/** This filter is documented in wp-includes/user.php */
2015-11-12 16:34:27 +00:00
$illegal_logins = ( array ) apply_filters ( 'illegal_user_logins' , array () );
2015-11-12 16:30:28 +00:00
if ( in_array ( strtolower ( $user -> user_login ), array_map ( 'strtolower' , $illegal_logins ) ) ) {
2015-12-04 23:25:26 +00:00
$errors -> add ( 'invalid_username' , __ ( '<strong>ERROR</strong>: Sorry, that username is not allowed.' ) );
2015-10-15 05:43:26 +00:00
}
2015-08-28 03:17:21 +00:00
/* checking email address */
2009-09-14 13:57:48 +00:00
if ( empty ( $user -> user_email ) ) {
2015-08-28 03:17:21 +00:00
$errors -> add ( 'empty_email' , __ ( '<strong>ERROR</strong>: Please enter an email address.' ), array ( 'form-field' => 'email' ) );
2017-11-30 23:11:00 +00:00
} elseif ( ! is_email ( $user -> user_email ) ) {
2012-10-05 19:04:34 +00:00
$errors -> add ( 'invalid_email' , __ ( '<strong>ERROR</strong>: The email address isn’t correct.' ), array ( 'form-field' => 'email' ) );
2017-11-30 23:11:00 +00:00
} elseif ( ( $owner_id = email_exists ( $user -> user_email ) ) && ( ! $update || ( $owner_id != $user -> ID ) ) ) {
$errors -> add ( 'email_exists' , __ ( '<strong>ERROR</strong>: This email is already registered, please choose another one.' ), array ( 'form-field' => 'email' ) );
2009-04-17 18:43:40 +00:00
}
2007-05-25 07:16:21 +00:00
2013-12-01 17:54:10 +00:00
/**
* Fires before user profile update errors are returned.
*
* @since 2.8.0
*
2017-10-02 22:03:33 +00:00
* @param WP_Error $errors WP_Error object (passed by reference).
2015-08-27 17:16:21 +00:00
* @param bool $update Whether this is a user update.
2017-10-02 22:03:33 +00:00
* @param stdClass $user User object (passed by reference).
2013-12-01 17:54:10 +00:00
*/
2013-03-07 06:00:16 +00:00
do_action_ref_array ( 'user_profile_update_errors' , array ( & $errors , $update , & $user ) );
2009-05-24 23:47:49 +00:00
2018-02-27 02:31:31 +00:00
if ( $errors -> has_errors () ) {
2007-05-25 07:16:21 +00:00
return $errors ;
2017-11-30 23:11:00 +00:00
}
2007-05-25 07:16:21 +00:00
if ( $update ) {
2012-08-10 15:36:54 +00:00
$user_id = wp_update_user ( $user );
2007-05-25 07:16:21 +00:00
} else {
2012-08-10 15:36:54 +00:00
$user_id = wp_insert_user ( $user );
2015-11-25 22:38:29 +00:00
$notify = isset ( $_POST [ 'send_user_notification' ] ) ? 'both' : 'admin' ;
2015-09-16 22:19:24 +00:00
/**
2017-11-26 23:57:55 +00:00
* Fires after a new user has been created.
*
* @since 4.4.0
*
* @param int $user_id ID of the newly created user.
* @param string $notify Type of notification that should happen. See wp_send_new_user_notifications()
* for more information on possible values.
*/
2015-11-25 22:38:29 +00:00
do_action ( 'edit_user_created_user' , $user_id , $notify );
2007-05-25 07:16:21 +00:00
}
return $user_id ;
}
2009-01-06 22:00:05 +00:00
/**
2009-03-18 02:43:45 +00:00
* Fetch a filtered list of user roles that the current user is
* allowed to edit.
2009-01-06 22:00:05 +00:00
*
2009-03-18 02:43:45 +00:00
* Simple function who's main purpose is to allow filtering of the
2009-01-06 22:00:05 +00:00
* list of roles in the $wp_roles object so that plugins can remove
2011-09-03 14:18:10 +00:00
* inappropriate ones depending on the situation or user making edits.
2009-01-06 22:00:05 +00:00
* Specifically because without filtering anyone with the edit_users
* capability can edit others to be administrators, even if they are
* only editors or authors. This filter allows admins to delegate
2009-03-18 02:43:45 +00:00
* user management.
2009-01-06 22:00:05 +00:00
*
2013-12-24 18:57:12 +00:00
* @since 2.8.0
2009-01-06 22:00:05 +00:00
*
2018-03-25 18:10:32 +00:00
* @return array[] Array of arrays containing role information.
2009-01-06 22:00:05 +00:00
*/
function get_editable_roles () {
2015-05-28 21:41:30 +00:00
$all_roles = wp_roles () -> roles ;
2013-12-01 17:54:10 +00:00
/**
2016-05-22 18:01:30 +00:00
* Filters the list of editable roles.
2013-12-01 17:54:10 +00:00
*
* @since 2.8.0
*
2018-03-25 18:10:32 +00:00
* @param array[] $all_roles Array of arrays containing role information.
2013-12-01 17:54:10 +00:00
*/
$editable_roles = apply_filters ( 'editable_roles' , $all_roles );
2009-03-18 02:43:45 +00:00
2009-01-06 22:00:05 +00:00
return $editable_roles ;
}
2008-10-02 01:03:26 +00:00
/**
* Retrieve user data and filter it.
*
2010-12-01 19:24:38 +00:00
* @since 2.0.5
2008-10-02 01:03:26 +00:00
*
* @param int $user_id User ID.
2013-09-02 03:25:09 +00:00
* @return WP_User|bool WP_User object on success, false on failure.
2008-10-02 01:03:26 +00:00
*/
2007-05-25 07:16:21 +00:00
function get_user_to_edit ( $user_id ) {
2012-08-03 01:06:05 +00:00
$user = get_userdata ( $user_id );
2009-08-06 21:59:52 +00:00
2017-11-30 23:11:00 +00:00
if ( $user ) {
2013-09-02 03:25:09 +00:00
$user -> filter = 'edit' ;
2017-11-30 23:11:00 +00:00
}
2007-05-25 07:16:21 +00:00
return $user ;
}
2008-10-02 01:03:26 +00:00
/**
* Retrieve the user's drafts.
*
2010-12-01 19:24:38 +00:00
* @since 2.0.0
2008-10-02 01:03:26 +00:00
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2015-05-28 21:41:30 +00:00
*
2008-10-02 01:03:26 +00:00
* @param int $user_id User ID.
* @return array
*/
2007-05-25 07:16:21 +00:00
function get_users_drafts ( $user_id ) {
global $wpdb ;
2017-11-30 23:11:00 +00:00
$query = $wpdb -> prepare ( "SELECT ID, post_title FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'draft' AND post_author = %d ORDER BY post_modified DESC" , $user_id );
2013-12-01 17:54:10 +00:00
/**
2016-05-22 18:01:30 +00:00
* Filters the user's drafts query string.
2013-12-01 17:54:10 +00:00
*
* @since 2.0.0
*
* @param string $query The user's drafts query string.
*/
$query = apply_filters ( 'get_users_drafts' , $query );
2007-05-25 07:16:21 +00:00
return $wpdb -> get_results ( $query );
}
2008-10-02 01:03:26 +00:00
/**
* Remove user and optionally reassign posts and links to another user.
*
2015-04-05 14:44:27 +00:00
* If the $reassign parameter is not assigned to a User ID, then all posts will
2016-05-23 17:28:27 +00:00
* be deleted of that user. The action {@see 'delete_user'} that is passed the User ID
2008-10-02 01:03:26 +00:00
* being deleted will be run after the posts are either reassigned or deleted.
* The user meta will also be deleted that are for that User ID.
*
2010-12-01 19:24:38 +00:00
* @since 2.0.0
2008-10-02 01:03:26 +00:00
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2015-05-28 21:41:30 +00:00
*
2008-10-02 01:03:26 +00:00
* @param int $id User ID.
* @param int $reassign Optional. Reassign posts and links to new User ID.
* @return bool True when finished.
*/
2014-03-08 03:16:14 +00:00
function wp_delete_user ( $id , $reassign = null ) {
2007-05-25 07:16:21 +00:00
global $wpdb ;
2015-09-11 02:25:23 +00:00
if ( ! is_numeric ( $id ) ) {
return false ;
}
2017-11-30 23:11:00 +00:00
$id = ( int ) $id ;
2012-04-18 21:07:31 +00:00
$user = new WP_User ( $id );
2009-04-17 02:13:00 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $user -> exists () ) {
2013-02-02 04:41:02 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2013-02-02 04:41:02 +00:00
2014-03-08 03:16:14 +00:00
// Normalize $reassign to null or a user ID. 'novalue' was an older default.
if ( 'novalue' === $reassign ) {
$reassign = null ;
} elseif ( null !== $reassign ) {
$reassign = ( int ) $reassign ;
}
2013-12-01 17:54:10 +00:00
/**
* Fires immediately before a user is deleted from the database.
*
* @since 2.0.0
*
2014-03-08 03:16:14 +00:00
* @param int $id ID of the user to delete.
* @param int|null $reassign ID of the user to reassign posts and links to.
* Default null, for no reassignment.
2013-12-01 17:54:10 +00:00
*/
2014-03-08 01:23:15 +00:00
do_action ( 'delete_user' , $id , $reassign );
2007-05-25 07:16:21 +00:00
2014-03-08 03:16:14 +00:00
if ( null === $reassign ) {
2012-05-08 17:01:50 +00:00
$post_types_to_delete = array ();
foreach ( get_post_types ( array (), 'objects' ) as $post_type ) {
if ( $post_type -> delete_with_user ) {
$post_types_to_delete [] = $post_type -> name ;
} elseif ( null === $post_type -> delete_with_user && post_type_supports ( $post_type -> name , 'author' ) ) {
$post_types_to_delete [] = $post_type -> name ;
}
}
2007-05-25 07:16:21 +00:00
2013-12-01 17:54:10 +00:00
/**
2016-05-22 18:01:30 +00:00
* Filters the list of post types to delete with a user.
2013-12-01 17:54:10 +00:00
*
* @since 3.4.0
*
2018-03-25 18:10:32 +00:00
* @param string[] $post_types_to_delete Array of post types to delete.
* @param int $id User ID.
2013-12-01 17:54:10 +00:00
*/
2012-05-08 17:01:50 +00:00
$post_types_to_delete = apply_filters ( 'post_types_to_delete_with_user' , $post_types_to_delete , $id );
$post_types_to_delete = implode ( "', '" , $post_types_to_delete );
2017-11-30 23:11:00 +00:00
$post_ids = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT ID FROM $wpdb->posts WHERE post_author = %d AND post_type IN (' $post_types_to_delete ')" , $id ) );
2010-01-19 19:23:11 +00:00
if ( $post_ids ) {
2017-11-30 23:11:00 +00:00
foreach ( $post_ids as $post_id ) {
2012-05-08 17:01:50 +00:00
wp_delete_post ( $post_id );
2017-11-30 23:11:00 +00:00
}
2007-05-25 07:16:21 +00:00
}
// Clean links
2017-11-30 23:11:00 +00:00
$link_ids = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT link_id FROM $wpdb->links WHERE link_owner = %d" , $id ) );
2009-04-17 02:13:00 +00:00
if ( $link_ids ) {
2017-11-30 23:11:00 +00:00
foreach ( $link_ids as $link_id ) {
wp_delete_link ( $link_id );
}
2009-04-17 02:13:00 +00:00
}
2007-05-25 07:16:21 +00:00
} else {
2012-09-10 19:56:08 +00:00
$post_ids = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT ID FROM $wpdb->posts WHERE post_author = %d" , $id ) );
2017-11-30 23:11:00 +00:00
$wpdb -> update ( $wpdb -> posts , array ( 'post_author' => $reassign ), array ( 'post_author' => $id ) );
2012-09-10 19:56:08 +00:00
if ( ! empty ( $post_ids ) ) {
2017-11-30 23:11:00 +00:00
foreach ( $post_ids as $post_id ) {
2012-09-10 19:56:08 +00:00
clean_post_cache ( $post_id );
2017-11-30 23:11:00 +00:00
}
2012-09-10 19:56:08 +00:00
}
2017-11-30 23:11:00 +00:00
$link_ids = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT link_id FROM $wpdb->links WHERE link_owner = %d" , $id ) );
$wpdb -> update ( $wpdb -> links , array ( 'link_owner' => $reassign ), array ( 'link_owner' => $id ) );
2012-09-10 19:56:08 +00:00
if ( ! empty ( $link_ids ) ) {
2017-11-30 23:11:00 +00:00
foreach ( $link_ids as $link_id ) {
2012-09-10 19:56:08 +00:00
clean_bookmark_cache ( $link_id );
2017-11-30 23:11:00 +00:00
}
2012-09-10 19:56:08 +00:00
}
2007-05-25 07:16:21 +00:00
}
// FINALLY, delete user
2012-04-24 22:13:47 +00:00
if ( is_multisite () ) {
remove_user_from_blog ( $id , get_current_blog_id () );
2010-01-15 00:21:13 +00:00
} else {
2012-04-24 22:13:47 +00:00
$meta = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT umeta_id FROM $wpdb->usermeta WHERE user_id = %d" , $id ) );
2017-11-30 23:11:00 +00:00
foreach ( $meta as $mid ) {
2012-04-24 22:13:47 +00:00
delete_metadata_by_mid ( 'user' , $mid );
2017-11-30 23:11:00 +00:00
}
2012-04-24 22:13:47 +00:00
$wpdb -> delete ( $wpdb -> users , array ( 'ID' => $id ) );
2010-01-15 00:21:13 +00:00
}
2007-05-25 07:16:21 +00:00
2012-04-18 21:24:53 +00:00
clean_user_cache ( $user );
2013-12-01 17:54:10 +00:00
/**
* Fires immediately after a user is deleted from the database.
*
* @since 2.9.0
*
2014-03-08 03:16:14 +00:00
* @param int $id ID of the deleted user.
* @param int|null $reassign ID of the user to reassign posts and links to.
* Default null, for no reassignment.
2013-12-01 17:54:10 +00:00
*/
2014-03-08 01:23:15 +00:00
do_action ( 'deleted_user' , $id , $reassign );
2007-05-25 07:16:21 +00:00
return true ;
}
2008-10-02 01:03:26 +00:00
/**
* Remove all capabilities from user.
*
2010-12-01 19:24:38 +00:00
* @since 2.1.0
2008-10-02 01:03:26 +00:00
*
* @param int $id User ID.
*/
2017-11-30 23:11:00 +00:00
function wp_revoke_user ( $id ) {
2007-05-25 07:16:21 +00:00
$id = ( int ) $id ;
2017-11-30 23:11:00 +00:00
$user = new WP_User ( $id );
2007-05-25 07:16:21 +00:00
$user -> remove_all_caps ();
}
2010-12-01 19:24:38 +00:00
/**
* @since 2.8.0
2015-05-28 21:41:30 +00:00
*
* @global int $user_ID
*
* @param false $errors Deprecated.
*/
2017-11-30 23:11:00 +00:00
function default_password_nag_handler ( $errors = false ) {
2009-05-06 16:19:40 +00:00
global $user_ID ;
2014-07-17 09:14:16 +00:00
// Short-circuit it.
2017-11-30 23:11:00 +00:00
if ( ! get_user_option ( 'default_password_nag' ) ) {
2009-05-06 16:19:40 +00:00
return ;
2017-11-30 23:11:00 +00:00
}
2009-05-06 16:19:40 +00:00
2014-07-17 09:14:16 +00:00
// get_user_setting = JS saved UI setting. else no-js-fallback code.
2017-11-30 23:11:00 +00:00
if ( 'hide' == get_user_setting ( 'default_password_nag' ) || isset ( $_GET [ 'default_password_nag' ] ) && '0' == $_GET [ 'default_password_nag' ] ) {
delete_user_setting ( 'default_password_nag' );
update_user_option ( $user_ID , 'default_password_nag' , false , true );
2009-05-03 17:06:29 +00:00
}
}
2009-05-06 16:19:40 +00:00
2010-12-01 19:24:38 +00:00
/**
* @since 2.8.0
2015-05-29 20:17:26 +00:00
*
* @param int $user_ID
* @param object $old_data
2010-12-01 19:24:38 +00:00
*/
2017-11-30 23:11:00 +00:00
function default_password_nag_edit_user ( $user_ID , $old_data ) {
2014-07-17 09:14:16 +00:00
// Short-circuit it.
2017-11-30 23:11:00 +00:00
if ( ! get_user_option ( 'default_password_nag' , $user_ID ) ) {
2009-05-06 16:19:40 +00:00
return ;
2017-11-30 23:11:00 +00:00
}
2009-05-06 16:19:40 +00:00
2017-11-30 23:11:00 +00:00
$new_data = get_userdata ( $user_ID );
2009-05-06 16:19:40 +00:00
2014-07-17 09:14:16 +00:00
// Remove the nag if the password has been changed.
if ( $new_data -> user_pass != $old_data -> user_pass ) {
2017-11-30 23:11:00 +00:00
delete_user_setting ( 'default_password_nag' );
update_user_option ( $user_ID , 'default_password_nag' , false , true );
2009-05-06 16:19:40 +00:00
}
}
2010-12-01 19:24:38 +00:00
/**
* @since 2.8.0
2015-05-28 21:41:30 +00:00
*
* @global string $pagenow
2010-12-01 19:24:38 +00:00
*/
2009-05-03 17:06:29 +00:00
function default_password_nag () {
2010-09-13 16:49:04 +00:00
global $pagenow ;
2014-07-17 09:14:16 +00:00
// Short-circuit it.
2017-11-30 23:11:00 +00:00
if ( 'profile.php' == $pagenow || ! get_user_option ( 'default_password_nag' ) ) {
2009-05-03 17:06:29 +00:00
return ;
2017-11-30 23:11:00 +00:00
}
2009-05-03 17:06:29 +00:00
2010-04-20 17:15:07 +00:00
echo '<div class="error default-password-nag">' ;
echo '<p>' ;
2017-11-30 23:11:00 +00:00
echo '<strong>' . __ ( 'Notice:' ) . '</strong> ' ;
_e ( 'You’re using the auto-generated password for your account. Would you like to change it?' );
2010-04-27 21:57:18 +00:00
echo '</p><p>' ;
2017-11-30 23:11:00 +00:00
printf ( '<a href="%s">' . __ ( 'Yes, take me to my profile page' ) . '</a> | ' , get_edit_profile_url () . '#password' );
printf ( '<a href="%s" id="default-password-nag-no">' . __ ( 'No thanks, do not remind me again' ) . '</a>' , '?default_password_nag=0' );
2009-05-03 17:06:29 +00:00
echo '</p></div>' ;
}
2015-09-10 16:47:24 +00:00
/**
* @since 3.5.0
* @access private
*/
2017-11-30 23:11:00 +00:00
function delete_users_add_js () {
?>
2015-09-10 16:47:24 +00:00
<script>
jQuery(document).ready( function($) {
var submit = $('#submit').prop('disabled', true);
$('input[name="delete_option"]').one('change', function() {
submit.prop('disabled', false);
});
$('#reassign_user').focus( function() {
$('#delete_option1').prop('checked', true).trigger('change');
});
});
</script>
<?php
2015-09-10 21:33:33 +00:00
}
/**
* Optional SSL preference that can be turned on by hooking to the 'personal_options' action.
*
2016-05-23 17:28:27 +00:00
* See the {@see 'personal_options'} action.
*
2015-09-10 21:33:33 +00:00
* @since 2.7.0
*
* @param object $user User data object
*/
2017-11-30 23:11:00 +00:00
function use_ssl_preference( $user ) {
2015-09-10 21:33:33 +00:00
?>
<tr class="user-use-ssl-wrap">
2017-11-30 23:11:00 +00:00
<th scope="row"><?php _e( 'Use https' ); ?></th>
<td><label for="use_ssl"><input name="use_ssl" type="checkbox" id="use_ssl" value="1" <?php checked( '1', $user->use_ssl ); ?> /> <?php _e( 'Always use https when visiting the admin' ); ?></label></td>
2015-09-10 21:33:33 +00:00
</tr>
<?php
}
/**
* @param string $text
* @return string
*/
function admin_created_user_email( $text ) {
$roles = get_editable_roles();
2017-11-30 23:11:00 +00:00
$role = $roles[ $_REQUEST['role'] ];
2018-03-11 16:44:34 +00:00
/* translators: 1: site name, 2: site URL, 3: role */
2017-11-30 23:11:00 +00:00
return sprintf(
__(
'Hi,
2015-09-10 21:33:33 +00:00
You\'ve been invited to join \'%1$s\' at
%2$s with the role of %3$s.
If you do not want to join this site please ignore
this email. This invitation will expire in a few days.
Please click the following link to activate your user account:
2017-11-30 23:11:00 +00:00
%%s'
), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) )
);
2015-09-25 04:44:25 +00:00
}
2018-04-10 18:02:30 +00:00
/**
* Resend an existing request and return the result.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
* @access private
*
2018-04-27 10:12:22 +00:00
* @param int $request_id Request ID.
2018-04-10 18:02:30 +00:00
* @return bool|WP_Error
*/
2018-04-27 10:12:22 +00:00
function _wp_privacy_resend_request( $request_id ) {
$request_id = absint( $request_id );
$request = get_post( $request_id );
2018-04-10 18:02:30 +00:00
2018-04-27 10:12:22 +00:00
if ( ! $request || 'user_request' !== $request->post_type ) {
2018-04-10 18:02:30 +00:00
return new WP_Error( 'privacy_request_error', __( 'Invalid request.' ) );
}
2018-04-27 10:12:22 +00:00
$result = wp_send_user_request( $request_id );
2018-04-10 18:02:30 +00:00
if ( is_wp_error( $result ) ) {
return $result;
} elseif ( ! $result ) {
return new WP_Error( 'privacy_request_error', __( 'Unable to initiate confirmation request.' ) );
}
return true;
}
/**
2018-05-08 23:29:20 +00:00
* Marks a request as completed by the admin and logs the current timestamp.
2018-04-10 18:02:30 +00:00
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
* @access private
*
2018-05-08 23:29:20 +00:00
* @param int $request_id Request ID.
* @return int|WP_Error $request Request ID on success or WP_Error.
2018-04-10 18:02:30 +00:00
*/
2018-04-27 10:12:22 +00:00
function _wp_privacy_completed_request( $request_id ) {
$request_id = absint( $request_id );
$request_data = wp_get_user_request_data( $request_id );
2018-04-10 18:02:30 +00:00
2018-04-27 10:12:22 +00:00
if ( ! $request_data ) {
2018-04-10 18:02:30 +00:00
return new WP_Error( 'privacy_request_error', __( 'Invalid request.' ) );
}
2018-05-08 23:29:20 +00:00
update_post_meta( $request_id, '_wp_user_request_completed_timestamp', time() );
2018-04-27 17:31:22 +00:00
2018-04-27 10:12:22 +00:00
$request = wp_update_post( array(
2018-04-27 17:31:22 +00:00
'ID' => $request_id,
2018-05-08 23:29:20 +00:00
'post_status' => 'request-completed',
2018-04-10 18:02:30 +00:00
) );
2018-04-27 17:31:22 +00:00
2018-04-27 10:12:22 +00:00
return $request;
2018-04-10 18:02:30 +00:00
}
/**
* Handle list table actions.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
* @access private
*/
function _wp_personal_data_handle_actions() {
2018-04-18 22:30:22 +00:00
if ( isset( $_POST['privacy_action_email_retry'] ) ) { // WPCS: input var ok.
2018-04-10 18:02:30 +00:00
check_admin_referer( 'bulk-privacy_requests' );
2018-04-18 22:30:22 +00:00
$request_id = absint( current( array_keys( (array) wp_unslash( $_POST['privacy_action_email_retry'] ) ) ) ); // WPCS: input var ok, sanitization ok.
2018-04-10 18:02:30 +00:00
$result = _wp_privacy_resend_request( $request_id );
if ( is_wp_error( $result ) ) {
add_settings_error(
2018-04-18 22:30:22 +00:00
'privacy_action_email_retry',
'privacy_action_email_retry',
2018-04-10 18:02:30 +00:00
$result->get_error_message(),
'error'
);
} else {
add_settings_error(
2018-04-18 22:30:22 +00:00
'privacy_action_email_retry',
'privacy_action_email_retry',
2018-05-02 20:07:22 +00:00
__( 'Confirmation request sent again successfully.' ),
2018-04-10 18:02:30 +00:00
'updated'
);
}
} elseif ( isset( $_POST['action'] ) ) {
$action = isset( $_POST['action'] ) ? sanitize_key( wp_unslash( $_POST['action'] ) ) : ''; // WPCS: input var ok, CSRF ok.
switch ( $action ) {
case 'add_export_personal_data_request':
case 'add_remove_personal_data_request':
check_admin_referer( 'personal-data-request' );
if ( ! isset( $_POST['type_of_action'], $_POST['username_or_email_to_export'] ) ) { // WPCS: input var ok.
add_settings_error(
'action_type',
'action_type',
__( 'Invalid action.' ),
'error'
);
}
$action_type = sanitize_text_field( wp_unslash( $_POST['type_of_action'] ) ); // WPCS: input var ok.
$username_or_email_address = sanitize_text_field( wp_unslash( $_POST['username_or_email_to_export'] ) ); // WPCS: input var ok.
$email_address = '';
if ( ! in_array( $action_type, _wp_privacy_action_request_types(), true ) ) {
add_settings_error(
'action_type',
'action_type',
__( 'Invalid action.' ),
'error'
);
}
if ( ! is_email( $username_or_email_address ) ) {
$user = get_user_by( 'login', $username_or_email_address );
if ( ! $user instanceof WP_User ) {
add_settings_error(
'username_or_email_to_export',
'username_or_email_to_export',
2018-04-13 16:15:21 +00:00
__( 'Unable to add this request. A valid email address or username must be supplied.' ),
2018-04-10 18:02:30 +00:00
'error'
);
} else {
$email_address = $user->user_email;
}
} else {
$email_address = $username_or_email_address;
}
2018-04-27 10:12:22 +00:00
if ( empty( $email_address ) ) {
break;
}
2018-04-10 18:02:30 +00:00
2018-04-27 10:12:22 +00:00
$request_id = wp_create_user_request( $email_address, $action_type );
if ( is_wp_error( $request_id ) ) {
add_settings_error(
'username_or_email_to_export',
'username_or_email_to_export',
$request_id->get_error_message(),
'error'
);
break;
} elseif ( ! $request_id ) {
add_settings_error(
'username_or_email_to_export',
'username_or_email_to_export',
__( 'Unable to initiate confirmation request.' ),
'error'
);
break;
2018-04-10 18:02:30 +00:00
}
2018-04-27 10:12:22 +00:00
wp_send_user_request( $request_id );
add_settings_error(
'username_or_email_to_export',
'username_or_email_to_export',
__( 'Confirmation request initiated successfully.' ),
'updated'
);
2018-04-10 18:02:30 +00:00
break;
}
}
}
2018-04-27 17:31:22 +00:00
/**
* Cleans up failed and expired requests before displaying the list table.
*
* @since 4.9.6
* @access private
*/
function _wp_personal_data_cleanup_requests() {
2018-05-04 01:49:22 +00:00
/** This filter is documented in wp-includes/user.php */
2018-04-27 17:31:22 +00:00
$expires = (int) apply_filters( 'user_request_key_expiration', DAY_IN_SECONDS );
$requests_query = new WP_Query( array(
'post_type' => 'user_request',
'posts_per_page' => -1,
'post_status' => 'request-pending',
'fields' => 'ids',
'date_query' => array(
array(
'column' => 'post_modified_gmt',
'before' => $expires . ' seconds ago',
),
),
) );
$request_ids = $requests_query->posts;
foreach ( $request_ids as $request_id ) {
wp_update_post( array(
'ID' => $request_id,
'post_status' => 'request-failed',
'post_password' => '',
) );
}
}
2018-04-10 18:02:30 +00:00
/**
* Personal data export.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
* @access private
*/
function _wp_personal_data_export_page() {
2018-05-02 01:07:22 +00:00
if ( ! current_user_can( 'export_others_personal_data' ) ) {
wp_die( __( 'Sorry, you are not allowed to export personal data on this site.' ) );
2018-04-10 18:02:30 +00:00
}
_wp_personal_data_handle_actions();
2018-04-27 17:31:22 +00:00
_wp_personal_data_cleanup_requests();
2018-04-10 18:02:30 +00:00
2018-04-27 19:54:21 +00:00
// "Borrow" xfn.js for now so we don't have to create new files.
wp_enqueue_script( 'xfn' );
2018-04-10 18:02:30 +00:00
$requests_table = new WP_Privacy_Data_Export_Requests_Table( array(
'plural' => 'privacy_requests',
'singular' => 'privacy_request',
) );
$requests_table->process_bulk_action();
$requests_table->prepare_items();
?>
<div class="wrap nosubsub">
<h1><?php esc_html_e( 'Export Personal Data' ); ?></h1>
<hr class="wp-header-end" />
<?php settings_errors(); ?>
<form method="post" class="wp-privacy-request-form">
<h2><?php esc_html_e( 'Add Data Export Request' ); ?></h2>
<p><?php esc_html_e( 'An email will be sent to the user at this email address asking them to verify the request.' ); ?></p>
<div class="wp-privacy-request-form-field">
<label for="username_or_email_to_export"><?php esc_html_e( 'Username or email address' ); ?></label>
<input type="text" required class="regular-text" id="username_or_email_to_export" name="username_or_email_to_export" />
<?php submit_button( __( 'Send Request' ), 'secondary', 'submit', false ); ?>
</div>
<?php wp_nonce_field( 'personal-data-request' ); ?>
<input type="hidden" name="action" value="add_export_personal_data_request" />
2018-04-27 10:12:22 +00:00
<input type="hidden" name="type_of_action" value="export_personal_data" />
2018-04-10 18:02:30 +00:00
</form>
<hr />
<?php $requests_table->views(); ?>
<form class="search-form wp-clearfix">
<?php $requests_table->search_box( __( 'Search Requests' ), 'requests' ); ?>
<input type="hidden" name="page" value="export_personal_data" />
<input type="hidden" name="filter-status" value="<?php echo isset( $_REQUEST['filter-status'] ) ? esc_attr( sanitize_text_field( $_REQUEST['filter-status'] ) ) : ''; ?>" />
<input type="hidden" name="orderby" value="<?php echo isset( $_REQUEST['orderby'] ) ? esc_attr( sanitize_text_field( $_REQUEST['orderby'] ) ) : ''; ?>" />
<input type="hidden" name="order" value="<?php echo isset( $_REQUEST['order'] ) ? esc_attr( sanitize_text_field( $_REQUEST['order'] ) ) : ''; ?>" />
</form>
<form method="post">
<?php
$requests_table->display();
$requests_table->embed_scripts();
?>
</form>
</div>
<?php
}
/**
* Personal data anonymization.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
* @access private
*/
function _wp_personal_data_removal_page() {
2018-05-02 01:07:22 +00:00
/*
* Require both caps in order to make it explicitly clear that delegating
* erasure from network admins to single-site admins will give them the
* ability to affect global users, rather than being limited to the site
* that they administer.
*/
if ( ! current_user_can( 'erase_others_personal_data' ) || ! current_user_can( 'delete_users' ) ) {
wp_die( __( 'Sorry, you are not allowed to erase data on this site.' ) );
2018-04-10 18:02:30 +00:00
}
_wp_personal_data_handle_actions();
2018-04-27 17:31:22 +00:00
_wp_personal_data_cleanup_requests();
2018-04-10 18:02:30 +00:00
2018-04-18 22:30:22 +00:00
// "Borrow" xfn.js for now so we don't have to create new files.
wp_enqueue_script( 'xfn' );
2018-04-10 18:02:30 +00:00
$requests_table = new WP_Privacy_Data_Removal_Requests_Table( array(
'plural' => 'privacy_requests',
'singular' => 'privacy_request',
) );
2018-04-18 22:30:22 +00:00
2018-04-10 18:02:30 +00:00
$requests_table->process_bulk_action();
$requests_table->prepare_items();
2018-04-18 22:30:22 +00:00
2018-04-10 18:02:30 +00:00
?>
<div class="wrap nosubsub">
2018-05-07 16:45:22 +00:00
<h1><?php esc_html_e( 'Erase Personal Data' ); ?></h1>
2018-04-10 18:02:30 +00:00
<hr class="wp-header-end" />
<?php settings_errors(); ?>
<form method="post" class="wp-privacy-request-form">
2018-05-07 16:45:22 +00:00
<h2><?php esc_html_e( 'Add Data Erasure Request' ); ?></h2>
2018-04-10 18:02:30 +00:00
<p><?php esc_html_e( 'An email will be sent to the user at this email address asking them to verify the request.' ); ?></p>
<div class="wp-privacy-request-form-field">
<label for="username_or_email_to_export"><?php esc_html_e( 'Username or email address' ); ?></label>
<input type="text" required class="regular-text" id="username_or_email_to_export" name="username_or_email_to_export" />
<?php submit_button( __( 'Send Request' ), 'secondary', 'submit', false ); ?>
</div>
<?php wp_nonce_field( 'personal-data-request' ); ?>
<input type="hidden" name="action" value="add_remove_personal_data_request" />
2018-04-27 10:12:22 +00:00
<input type="hidden" name="type_of_action" value="remove_personal_data" />
2018-04-10 18:02:30 +00:00
</form>
<hr />
<?php $requests_table->views(); ?>
<form class="search-form wp-clearfix">
<?php $requests_table->search_box( __( 'Search Requests' ), 'requests' ); ?>
2018-04-27 17:31:22 +00:00
<input type="hidden" name="page" value="remove_personal_data" />
2018-04-10 18:02:30 +00:00
<input type="hidden" name="filter-status" value="<?php echo isset( $_REQUEST['filter-status'] ) ? esc_attr( sanitize_text_field( $_REQUEST['filter-status'] ) ) : ''; ?>" />
<input type="hidden" name="orderby" value="<?php echo isset( $_REQUEST['orderby'] ) ? esc_attr( sanitize_text_field( $_REQUEST['orderby'] ) ) : ''; ?>" />
<input type="hidden" name="order" value="<?php echo isset( $_REQUEST['order'] ) ? esc_attr( sanitize_text_field( $_REQUEST['order'] ) ) : ''; ?>" />
</form>
<form method="post">
<?php
$requests_table->display();
$requests_table->embed_scripts();
?>
</form>
</div>
<?php
}
/**
* Add requests pages.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
* @access private
*/
function _wp_privacy_hook_requests_page() {
2018-05-02 01:07:22 +00:00
add_submenu_page( 'tools.php', __( 'Export Personal Data' ), __( 'Export Personal Data' ), 'export_others_personal_data', 'export_personal_data', '_wp_personal_data_export_page' );
2018-05-07 16:45:22 +00:00
add_submenu_page( 'tools.php', __( 'Erase Personal Data' ), __( 'Erase Personal Data' ), 'erase_others_personal_data', 'remove_personal_data', '_wp_personal_data_removal_page' );
2018-04-10 18:02:30 +00:00
}
// TODO: move the following classes in new files.
if ( ! class_exists( 'WP_List_Table' ) ) {
require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
}
/**
* WP_Privacy_Requests_Table class.
*/
abstract class WP_Privacy_Requests_Table extends WP_List_Table {
/**
* Action name for the requests this table will work with. Classes
* which inherit from WP_Privacy_Requests_Table should define this.
2018-04-13 16:15:21 +00:00
* e.g. 'export_personal_data'
2018-04-10 18:02:30 +00:00
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @var string $request_type Name of action.
*/
protected $request_type = 'INVALID';
2018-04-13 16:15:21 +00:00
/**
* Post type to be used.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-13 16:15:21 +00:00
*
* @var string $post_type The post type.
*/
protected $post_type = 'INVALID';
2018-04-10 18:02:30 +00:00
/**
* Get columns to show in the list table.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @param array Array of columns.
*/
public function get_columns() {
$columns = array(
2018-04-27 17:31:22 +00:00
'cb' => '<input type="checkbox" />',
'email' => __( 'Requester' ),
'status' => __( 'Status' ),
'created_timestamp' => __( 'Requested' ),
'next_steps' => __( 'Next Steps' ),
2018-04-10 18:02:30 +00:00
);
return $columns;
}
/**
* Get a list of sortable columns.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @return array
*/
protected function get_sortable_columns() {
return array();
}
/**
* Default primary column.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @return string
*/
protected function get_default_primary_column_name() {
return 'email';
}
2018-04-27 10:12:22 +00:00
/**
* Count number of requests for each status.
*
* @since 4.9.6
*
* @return object Number of posts for each status.
*/
protected function get_request_counts() {
global $wpdb;
$cache_key = $this->post_type . '-' . $this->request_type;
$counts = wp_cache_get( $cache_key, 'counts' );
if ( false !== $counts ) {
return $counts;
}
$query = "
2018-05-07 16:45:22 +00:00
SELECT post_status, COUNT( * ) AS num_posts
FROM {$wpdb->posts}
2018-04-27 10:12:22 +00:00
WHERE post_type = %s
2018-04-27 17:31:22 +00:00
AND post_name = %s
2018-04-27 10:12:22 +00:00
GROUP BY post_status";
$results = (array) $wpdb->get_results( $wpdb->prepare( $query, $this->post_type, $this->request_type ), ARRAY_A );
$counts = array_fill_keys( get_post_stati(), 0 );
foreach ( $results as $row ) {
$counts[ $row['post_status'] ] = $row['num_posts'];
}
$counts = (object) $counts;
wp_cache_set( $cache_key, $counts, 'counts' );
return $counts;
}
2018-04-10 18:02:30 +00:00
/**
* Get an associative array ( id => link ) with the list
* of views available on this table.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @return array
*/
protected function get_views() {
$current_status = isset( $_REQUEST['filter-status'] ) ? sanitize_text_field( $_REQUEST['filter-status'] ): '';
$statuses = _wp_privacy_statuses();
$views = array();
$admin_url = admin_url( 'tools.php?page=' . $this->request_type );
2018-04-27 10:12:22 +00:00
$counts = $this->get_request_counts();
2018-04-10 18:02:30 +00:00
$current_link_attributes = empty( $current_status ) ? ' class="current" aria-current="page"' : '';
2018-04-24 21:35:21 +00:00
$views['all'] = '<a href="' . esc_url( $admin_url ) . "\" $current_link_attributes>" . esc_html__( 'All' ) . ' <span class="count">(' . absint( array_sum( (array) $counts ) ) . ')</span></a>';
2018-04-10 18:02:30 +00:00
foreach ( $statuses as $status => $label ) {
$current_link_attributes = $status === $current_status ? ' class="current" aria-current="page"' : '';
2018-04-24 21:35:21 +00:00
$views[ $status ] = '<a href="' . esc_url( add_query_arg( 'filter-status', $status, $admin_url ) ) . "\" $current_link_attributes>" . esc_html( $label ) . ' <span class="count">(' . absint( $counts->$status ) . ')</span></a>';
2018-04-10 18:02:30 +00:00
}
return $views;
}
/**
* Get bulk actions.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @return array
*/
protected function get_bulk_actions() {
return array(
'delete' => __( 'Remove' ),
'resend' => __( 'Resend email' ),
);
}
/**
* Process bulk actions.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*/
public function process_bulk_action() {
$action = $this->current_action();
$request_ids = isset( $_REQUEST['request_id'] ) ? wp_parse_id_list( wp_unslash( $_REQUEST['request_id'] ) ) : array(); // WPCS: input var ok, CSRF ok.
2018-04-27 10:12:22 +00:00
$count = 0;
2018-04-10 18:02:30 +00:00
if ( $request_ids ) {
check_admin_referer( 'bulk-privacy_requests' );
}
switch ( $action ) {
case 'delete':
foreach ( $request_ids as $request_id ) {
if ( wp_delete_post( $request_id, true ) ) {
$count ++;
}
}
add_settings_error(
'bulk_action',
'bulk_action',
sprintf( _n( 'Deleted %d request', 'Deleted %d requests', $count ), $count ),
'updated'
);
break;
case 'resend':
foreach ( $request_ids as $request_id ) {
2018-04-27 10:12:22 +00:00
$resend = _wp_privacy_resend_request( $request_id );
2018-04-27 17:31:22 +00:00
2018-04-27 10:12:22 +00:00
if ( $resend && ! is_wp_error( $resend ) ) {
$count++;
2018-04-10 18:02:30 +00:00
}
}
add_settings_error(
'bulk_action',
'bulk_action',
sprintf( _n( 'Re-sent %d request', 'Re-sent %d requests', $count ), $count ),
'updated'
);
break;
}
}
/**
* Prepare items to output.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*/
public function prepare_items() {
global $wpdb;
$primary = $this->get_primary_column_name();
$this->_column_headers = array(
$this->get_columns(),
array(),
$this->get_sortable_columns(),
$primary,
);
$this->items = array();
$posts_per_page = 20;
$args = array(
2018-04-13 16:15:21 +00:00
'post_type' => $this->post_type,
2018-04-27 17:31:22 +00:00
'post_name__in' => array( $this->request_type ),
2018-04-10 18:02:30 +00:00
'posts_per_page' => $posts_per_page,
'offset' => isset( $_REQUEST['paged'] ) ? max( 0, absint( $_REQUEST['paged'] ) - 1 ) * $posts_per_page: 0,
'post_status' => 'any',
2018-04-27 17:31:22 +00:00
's' => isset( $_REQUEST['s'] ) ? sanitize_text_field( $_REQUEST['s'] ) : '',
2018-04-10 18:02:30 +00:00
);
if ( ! empty( $_REQUEST['filter-status'] ) ) {
$filter_status = isset( $_REQUEST['filter-status'] ) ? sanitize_text_field( $_REQUEST['filter-status'] ) : '';
$args['post_status'] = $filter_status;
}
2018-04-27 10:12:22 +00:00
$requests_query = new WP_Query( $args );
$requests = $requests_query->posts;
foreach ( $requests as $request ) {
$this->items[] = wp_get_user_request_data( $request->ID );
2018-04-10 18:02:30 +00:00
}
2018-04-27 17:31:22 +00:00
$this->items = array_filter( $this->items );
2018-04-10 18:02:30 +00:00
$this->set_pagination_args(
array(
2018-04-27 10:12:22 +00:00
'total_items' => $requests_query->found_posts,
2018-04-10 18:02:30 +00:00
'per_page' => $posts_per_page,
)
);
}
/**
* Checkbox column.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
* @return string
*/
public function column_cb( $item ) {
2018-04-27 17:31:22 +00:00
return sprintf( '<input type="checkbox" name="request_id[]" value="%1$s" /><span class="spinner"></span>', esc_attr( $item->ID ) );
2018-04-10 18:02:30 +00:00
}
/**
* Status column.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
* @return string
*/
public function column_status( $item ) {
2018-04-27 17:31:22 +00:00
$status = get_post_status( $item->ID );
2018-04-10 18:02:30 +00:00
$status_object = get_post_status_object( $status );
if ( ! $status_object || empty( $status_object->label ) ) {
return '-';
}
$timestamp = false;
switch ( $status ) {
case 'request-confirmed':
2018-04-27 17:31:22 +00:00
$timestamp = $item->confirmed_timestamp;
2018-04-10 18:02:30 +00:00
break;
case 'request-completed':
2018-04-27 17:31:22 +00:00
$timestamp = $item->completed_timestamp;
2018-04-10 18:02:30 +00:00
break;
}
echo '<span class="status-label status-' . esc_attr( $status ) . '">';
echo esc_html( $status_object->label );
if ( $timestamp ) {
echo ' (' . $this->get_timestamp_as_date( $timestamp ) . ')';
}
echo '</span>';
}
/**
* Convert timestamp for display.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @param int $timestamp Event timestamp.
* @return string
*/
protected function get_timestamp_as_date( $timestamp ) {
if ( empty( $timestamp ) ) {
return '';
}
$time_diff = current_time( 'timestamp', true ) - $timestamp;
if ( $time_diff >= 0 && $time_diff < DAY_IN_SECONDS ) {
return sprintf( __( '%s ago' ), human_time_diff( $timestamp ) );
}
return date_i18n( get_option( 'date_format' ), $timestamp );
}
/**
* Default column handler.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
* @param string $column_name Name of column being shown.
2018-04-10 18:02:30 +00:00
* @return string
*/
public function column_default( $item, $column_name ) {
2018-04-27 17:31:22 +00:00
$cell_value = $item->$column_name;
2018-04-10 18:02:30 +00:00
2018-04-27 17:31:22 +00:00
if ( in_array( $column_name, array( 'created_timestamp' ), true ) ) {
2018-04-10 18:02:30 +00:00
return $this->get_timestamp_as_date( $cell_value );
}
return $cell_value;
}
/**
* Actions column. Overriden by children.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
* @return string
*/
public function column_email( $item ) {
2018-05-01 17:12:22 +00:00
return sprintf( '<a href="%1$s">%2$s</a> %3$s', esc_url( 'mailto:' . $item->email ), $item->email, $this->row_actions( array() ) );
2018-04-10 18:02:30 +00:00
}
/**
* Next steps column. Overriden by children.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
*/
public function column_next_steps( $item ) {}
/**
* Generates content for a single row of the table
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item The current item
2018-04-10 18:02:30 +00:00
*/
public function single_row( $item ) {
2018-04-27 17:31:22 +00:00
$status = $item->status;
2018-04-10 18:02:30 +00:00
echo '<tr class="status-' . esc_attr( $status ) . '">';
$this->single_row_columns( $item );
echo '</tr>';
}
/**
* Embed scripts used to perform actions. Overriden by children.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*/
public function embed_scripts() {}
}
/**
* WP_Privacy_Data_Export_Requests_Table class.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*/
class WP_Privacy_Data_Export_Requests_Table extends WP_Privacy_Requests_Table {
/**
2018-04-13 16:15:21 +00:00
* Action name for the requests this table will work with.
2018-04-10 18:02:30 +00:00
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @var string $request_type Name of action.
*/
2018-04-13 16:15:21 +00:00
protected $request_type = 'export_personal_data';
/**
* Post type for the requests.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-13 16:15:21 +00:00
*
* @var string $post_type The post type.
*/
2018-04-27 10:12:22 +00:00
protected $post_type = 'user_request';
2018-04-10 18:02:30 +00:00
/**
* Actions column.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
* @return string
*/
public function column_email( $item ) {
2018-04-18 22:30:22 +00:00
$exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() );
$exporters_count = count( $exporters );
2018-04-27 17:31:22 +00:00
$request_id = $item->ID;
2018-04-18 22:30:22 +00:00
$nonce = wp_create_nonce( 'wp-privacy-export-personal-data-' . $request_id );
2018-04-27 19:54:21 +00:00
$download_data_markup = '<div class="export_personal_data" ' .
2018-04-18 22:30:22 +00:00
'data-exporters-count="' . esc_attr( $exporters_count ) . '" ' .
'data-request-id="' . esc_attr( $request_id ) . '" ' .
'data-nonce="' . esc_attr( $nonce ) .
'">';
2018-04-27 19:54:21 +00:00
$download_data_markup .= '<span class="export_personal_data_idle"><a href="#" >' . __( 'Download Personal Data' ) . '</a></span>' .
'<span style="display:none" class="export_personal_data_processing" >' . __( 'Downloading Data...' ) . '</span>' .
'<span style="display:none" class="export_personal_data_success"><a href="#" >' . __( 'Download Personal Data Again' ) . '</a></span>' .
2018-05-02 18:42:21 +00:00
'<span style="display:none" class="export_personal_data_failed">' . __( 'Download has failed.' ) . ' <a href="#" >' . __( 'Retry' ) . '</a></span>';
2018-04-27 19:54:21 +00:00
$download_data_markup .= '</div>';
2018-04-18 22:30:22 +00:00
2018-04-10 18:02:30 +00:00
$row_actions = array(
2018-04-18 22:30:22 +00:00
'download_data' => $download_data_markup,
2018-04-10 18:02:30 +00:00
);
2018-05-01 17:12:22 +00:00
return sprintf( '<a href="%1$s">%2$s</a> %3$s', esc_url( 'mailto:' . $item->email ), $item->email, $this->row_actions( $row_actions ) );
2018-04-10 18:02:30 +00:00
}
/**
* Next steps column.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
*/
public function column_next_steps( $item ) {
2018-04-27 17:31:22 +00:00
$status = $item->status;
2018-04-10 18:02:30 +00:00
switch ( $status ) {
case 'request-pending':
esc_html_e( 'Waiting for confirmation' );
break;
case 'request-confirmed':
2018-04-27 19:54:21 +00:00
$exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() );
$exporters_count = count( $exporters );
$request_id = $item->ID;
$nonce = wp_create_nonce( 'wp-privacy-export-personal-data-' . $request_id );
echo '<div class="export_personal_data" ' .
'data-send-as-email="1" ' .
'data-exporters-count="' . esc_attr( $exporters_count ) . '" ' .
'data-request-id="' . esc_attr( $request_id ) . '" ' .
'data-nonce="' . esc_attr( $nonce ) .
'">';
?>
2018-05-05 09:17:21 +00:00
<span class="export_personal_data_idle"><a class="button" href="#" ><?php _e( 'Send Export Link' ); ?></a></span>
2018-04-27 19:54:21 +00:00
<span style="display:none" class="export_personal_data_processing button updating-message" ><?php _e( 'Sending Email...' ); ?></span>
2018-05-02 18:42:21 +00:00
<span style="display:none" class="export_personal_data_success success-message" ><?php _e( 'Email sent.' ); ?></span>
<span style="display:none" class="export_personal_data_failed"><?php _e( 'Email could not be sent.' ); ?> <a class="button" href="#" ><?php _e( 'Retry' ); ?></a></span>
2018-04-27 19:54:21 +00:00
<?php
echo '</div>';
2018-04-10 18:02:30 +00:00
break;
case 'request-failed':
2018-04-27 17:31:22 +00:00
submit_button( __( 'Retry' ), 'secondary', 'privacy_action_email_retry[' . $item->ID . ']', false );
2018-04-10 18:02:30 +00:00
break;
case 'request-completed':
echo '<a href="' . esc_url( wp_nonce_url( add_query_arg( array(
'action' => 'delete',
2018-04-27 17:31:22 +00:00
'request_id' => array( $item->ID )
2018-04-10 18:02:30 +00:00
), admin_url( 'tools.php?page=export_personal_data' ) ), 'bulk-privacy_requests' ) ) . '">' . esc_html__( 'Remove request' ) . '</a>';
break;
}
}
}
/**
* WP_Privacy_Data_Removal_Requests_Table class.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*/
class WP_Privacy_Data_Removal_Requests_Table extends WP_Privacy_Requests_Table {
/**
2018-04-13 16:15:21 +00:00
* Action name for the requests this table will work with.
2018-04-10 18:02:30 +00:00
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
* @var string $request_type Name of action.
*/
2018-04-13 16:15:21 +00:00
protected $request_type = 'remove_personal_data';
/**
* Post type for the requests.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-13 16:15:21 +00:00
*
* @var string $post_type The post type.
*/
2018-04-27 10:12:22 +00:00
protected $post_type = 'user_request';
2018-04-10 18:02:30 +00:00
/**
* Actions column.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
* @return string
*/
public function column_email( $item ) {
2018-04-18 22:30:22 +00:00
$row_actions = array();
2018-04-10 18:02:30 +00:00
2018-04-27 17:31:22 +00:00
// Allow the administrator to "force remove" the personal data even if confirmation has not yet been received.
$status = $item->status;
2018-04-18 22:30:22 +00:00
if ( 'request-confirmed' !== $status ) {
$erasers = apply_filters( 'wp_privacy_personal_data_erasers', array() );
$erasers_count = count( $erasers );
2018-04-27 17:31:22 +00:00
$request_id = $item->ID;
2018-04-18 22:30:22 +00:00
$nonce = wp_create_nonce( 'wp-privacy-erase-personal-data-' . $request_id );
$remove_data_markup = '<div class="remove_personal_data force_remove_personal_data" ' .
'data-erasers-count="' . esc_attr( $erasers_count ) . '" ' .
'data-request-id="' . esc_attr( $request_id ) . '" ' .
'data-nonce="' . esc_attr( $nonce ) .
'">';
2018-05-07 16:45:22 +00:00
$remove_data_markup .= '<span class="remove_personal_data_idle"><a href="#" >' . __( 'Force Erase Personal Data' ) . '</a></span>' .
'<span style="display:none" class="remove_personal_data_processing" >' . __( 'Erasing Data...' ) . '</span>' .
'<span style="display:none" class="remove_personal_data_failed">' . __( 'Force Erase has failed.' ) . ' <a href="#" >' . __( 'Retry' ) . '</a></span>';
2018-04-18 22:30:22 +00:00
2018-04-27 19:54:21 +00:00
$remove_data_markup .= '</div>';
2018-04-18 22:30:22 +00:00
$row_actions = array(
'remove_data' => $remove_data_markup,
);
2018-04-10 18:02:30 +00:00
}
2018-05-01 17:12:22 +00:00
return sprintf( '<a href="%1$s">%2$s</a> %3$s', esc_url( 'mailto:' . $item->email ), $item->email, $this->row_actions( $row_actions ) );
2018-04-10 18:02:30 +00:00
}
/**
* Next steps column.
*
2018-04-18 22:30:22 +00:00
* @since 4.9.6
2018-04-10 18:02:30 +00:00
*
2018-04-27 17:31:22 +00:00
* @param WP_User_Request $item Item being shown.
2018-04-10 18:02:30 +00:00
*/
public function column_next_steps( $item ) {
2018-04-27 17:31:22 +00:00
$status = $item->status;
2018-04-18 22:30:22 +00:00
switch ( $status ) {
case 'request-pending':
esc_html_e( 'Waiting for confirmation' );
break;
case 'request-confirmed':
$erasers = apply_filters( 'wp_privacy_personal_data_erasers', array() );
$erasers_count = count( $erasers );
2018-04-27 17:31:22 +00:00
$request_id = $item->ID;
2018-04-18 22:30:22 +00:00
$nonce = wp_create_nonce( 'wp-privacy-erase-personal-data-' . $request_id );
echo '<div class="remove_personal_data" ' .
'data-force-erase="1" ' .
'data-erasers-count="' . esc_attr( $erasers_count ) . '" ' .
'data-request-id="' . esc_attr( $request_id ) . '" ' .
'data-nonce="' . esc_attr( $nonce ) .
'">';
?>
2018-05-07 16:45:22 +00:00
<span class="remove_personal_data_idle"><a class="button" href="#" ><?php _e( 'Erase Personal Data' ); ?></a></span>
<span style="display:none" class="remove_personal_data_processing button updating-message" ><?php _e( 'Erasing Data...' ); ?></span>
<span style="display:none" class="remove_personal_data_failed"><?php _e( 'Erasing Data has failed.' ); ?> <a class="button" href="#" ><?php _e( 'Retry' ); ?></a></span>
2018-04-18 22:30:22 +00:00
<?php
2018-04-27 19:54:21 +00:00
echo '</div>';
2018-04-18 22:30:22 +00:00
break;
case 'request-failed':
2018-04-27 17:31:22 +00:00
submit_button( __( 'Retry' ), 'secondary', 'privacy_action_email_retry[' . $item->ID . ']', false );
2018-04-18 22:30:22 +00:00
break;
case 'request-completed':
echo '<a href="' . esc_url( wp_nonce_url( add_query_arg( array(
'action' => 'delete',
2018-04-27 17:31:22 +00:00
'request_id' => array( $item->ID ),
2018-04-18 22:30:22 +00:00
), admin_url( 'tools.php?page=remove_personal_data' ) ), 'bulk-privacy_requests' ) ) . '">' . esc_html__( 'Remove request' ) . '</a>';
break;
}
2018-04-10 18:02:30 +00:00
}
}