bootstrap.php
9 months ago
class-wpcom-user-profile-fields-revert.php
9 months ago
profile-edit.php
2 months ago
bootstrap.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Bootstrap the WP.com User profile edit restriction. |
| 4 | * |
| 5 | * @package automattic/jetpack-masterbar |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Masterbar; |
| 9 | |
| 10 | use Automattic\Jetpack\Connection\Manager as Connection_Manager; |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit( 0 ); |
| 14 | } |
| 15 | |
| 16 | require_once __DIR__ . '/class-wpcom-user-profile-fields-revert.php'; |
| 17 | |
| 18 | /** |
| 19 | * Prevent WP.com user profile fields (first_name, last_name, display_name, description) to be updated. |
| 20 | */ |
| 21 | function load_the_user_profile_info_revert() { |
| 22 | new WPCOM_User_Profile_Fields_Revert( new Connection_Manager( 'jetpack' ) ); |
| 23 | } |
| 24 | |
| 25 | \add_action( 'load-profile.php', __NAMESPACE__ . '\load_the_user_profile_info_revert' ); |
| 26 | \add_action( 'load-user-edit.php', __NAMESPACE__ . '\load_the_user_profile_info_revert' ); |
| 27 |