bootstrap.php
2 years ago
class-wpcom-user-profile-fields-revert.php
2 years ago
profile-edit.php
2 years ago
class-wpcom-user-profile-fields-revert.php
129 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Manage User profile fields. |
| 4 | * |
| 5 | * @deprecated 13.7 Use Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert instead. |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Dashboard_Customizations; |
| 11 | |
| 12 | use Automattic\Jetpack\Connection\Manager as Connection_Manager; |
| 13 | use Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert as Masterbar_WPCOM_User_Profile_Fields_Revert; |
| 14 | |
| 15 | /** |
| 16 | * Responsible with preventing the back-end default implementation to save the fields that are managed on WP.com profiles. |
| 17 | * |
| 18 | * Class Profile_Edit_Filter_Fields |
| 19 | */ |
| 20 | class WPCOM_User_Profile_Fields_Revert { |
| 21 | |
| 22 | /** |
| 23 | * Instance of \Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert |
| 24 | * Used for deprecation purposes. |
| 25 | * |
| 26 | * @var \Automattic\Jetpack\Masterbar\WPCOM_User_Profile_Fields_Revert |
| 27 | */ |
| 28 | private $wpcom_user_profile_fields_revert_wrapper; |
| 29 | |
| 30 | /** |
| 31 | * Profile_Edit_Filter_Fields constructor. |
| 32 | * |
| 33 | * @deprecated 13.7 |
| 34 | * |
| 35 | * @param Connection_Manager $connection_manager The connection manager. |
| 36 | */ |
| 37 | public function __construct( Connection_Manager $connection_manager ) { |
| 38 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::__construct' ); |
| 39 | $this->wpcom_user_profile_fields_revert_wrapper = new Masterbar_WPCOM_User_Profile_Fields_Revert( $connection_manager ); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Filter the built-in user profile fields. |
| 44 | * |
| 45 | * @deprecated 13.7 |
| 46 | * |
| 47 | * @param array $data { |
| 48 | * Values and keys for the user. |
| 49 | * |
| 50 | * @type string $user_login The user's login. Only included if $update == false |
| 51 | * @type string $user_pass The user's password. |
| 52 | * @type string $user_email The user's email. |
| 53 | * @type string $user_url The user's url. |
| 54 | * @type string $user_nicename The user's nice name. Defaults to a URL-safe version of user's login |
| 55 | * @type string $display_name The user's display name. |
| 56 | * @type string $user_registered MySQL timestamp describing the moment when the user registered. Defaults to |
| 57 | * the current UTC timestamp. |
| 58 | * } |
| 59 | * |
| 60 | * @param bool $update Whether the user is being updated rather than created. |
| 61 | * @param int|null $id ID of the user to be updated, or NULL if the user is being created. |
| 62 | * |
| 63 | * @return array |
| 64 | */ |
| 65 | public function revert_user_data_on_wp_admin_profile_update( $data, $update, $id ) { |
| 66 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::revert_user_data_on_wp_admin_profile_update' ); |
| 67 | return $this->wpcom_user_profile_fields_revert_wrapper->revert_user_data_on_wp_admin_profile_update( $data, $update, $id ); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Revert the first_name, last_name and description since this is managed by WP.com. |
| 72 | * |
| 73 | * @deprecated 13.7 |
| 74 | * |
| 75 | * @param array $meta { |
| 76 | * Default meta values and keys for the user. |
| 77 | * |
| 78 | * @type string $nickname The user's nickname. Default is the user's username. |
| 79 | * @type string $first_name The user's first name. |
| 80 | * @type string $last_name The user's last name. |
| 81 | * @type string $description The user's description. |
| 82 | * @type string $rich_editing Whether to enable the rich-editor for the user. Default 'true'. |
| 83 | * @type string $syntax_highlighting Whether to enable the rich code editor for the user. Default 'true'. |
| 84 | * @type string $comment_shortcuts Whether to enable keyboard shortcuts for the user. Default 'false'. |
| 85 | * @type string $admin_color The color scheme for a user's admin screen. Default 'fresh'. |
| 86 | * @type int|bool $use_ssl Whether to force SSL on the user's admin area. 0|false if SSL |
| 87 | * is not forced. |
| 88 | * @type string $show_admin_bar_front Whether to show the admin bar on the front end for the user. |
| 89 | * Default 'true'. |
| 90 | * @type string $locale User's locale. Default empty. |
| 91 | * } |
| 92 | * @param \WP_User $user User object. |
| 93 | * @param bool $update Whether the user is being updated rather than created. |
| 94 | * |
| 95 | * @return array |
| 96 | */ |
| 97 | public function revert_user_meta_on_wp_admin_profile_change( $meta, $user, $update ) { |
| 98 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::revert_user_meta_on_wp_admin_profile_change' ); |
| 99 | return $this->wpcom_user_profile_fields_revert_wrapper->revert_user_meta_on_wp_admin_profile_change( $meta, $user, $update ); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Disable the e-mail notification. |
| 104 | * |
| 105 | * @deprecated 13.7 |
| 106 | * |
| 107 | * @param bool $send Whether to send or not the email. |
| 108 | * @param array $user User data. |
| 109 | */ |
| 110 | public function disable_send_email_change_email( $send, $user ) { |
| 111 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::disable_send_email_change_email' ); |
| 112 | return $this->wpcom_user_profile_fields_revert_wrapper->disable_send_email_change_email( $send, $user ); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Disable notification on E-mail changes for Atomic WP-Admin Edit Profile. (for WP.com we use a different section for changing the E-mail). |
| 117 | * |
| 118 | * We need this because WP.org uses a custom flow for E-mail changes. |
| 119 | * |
| 120 | * @deprecated 13.7 |
| 121 | * |
| 122 | * @param int $user_id The id of the user that's updated. |
| 123 | */ |
| 124 | public function disable_email_notification( $user_id ) { |
| 125 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\WPCOM_User_Profile_Fields_Revert::disable_email_notification' ); |
| 126 | $this->wpcom_user_profile_fields_revert_wrapper->disable_email_notification( $user_id ); |
| 127 | } |
| 128 | } |
| 129 |