xprofile_screen_change_avatar()
Handles the uploading and cropping of a user avatar. Displays the change avatar page.
Description
Source
File: bp-xprofile/screens/change-avatar.php
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | function xprofile_screen_change_avatar() { // Bail if not the correct screen. if ( ! bp_is_my_profile() && ! bp_current_user_can( 'bp_moderate' ) ) { return false; } // Bail if there are action variables. if ( bp_action_variables() ) { bp_do_404(); return ; } $bp = buddypress(); if ( ! isset( $bp ->avatar_admin ) ) { $bp ->avatar_admin = new stdClass(); } $bp ->avatar_admin->step = 'upload-image' ; if ( ! empty ( $_FILES ) ) { // Check the nonce. check_admin_referer( 'bp_avatar_upload' ); // Pass the file to the avatar upload handler. if ( bp_core_avatar_handle_upload( $_FILES , 'xprofile_avatar_upload_dir' ) ) { $bp ->avatar_admin->step = 'crop-image' ; // Make sure we include the jQuery jCrop file for image cropping. add_action( 'wp_print_scripts' , 'bp_core_add_jquery_cropper' ); } } // If the image cropping is done, crop the image and save a full/thumb version. if ( isset( $_POST [ 'avatar-crop-submit' ] ) ) { // Check the nonce. check_admin_referer( 'bp_avatar_cropstore' ); $args = array ( 'item_id' => bp_displayed_user_id(), 'original_file' => $_POST [ 'image_src' ], 'crop_x' => $_POST [ 'x' ], 'crop_y' => $_POST [ 'y' ], 'crop_w' => $_POST [ 'w' ], 'crop_h' => $_POST [ 'h' ] ); if ( ! bp_core_avatar_handle_crop( $args ) ) { bp_core_add_message( __( 'There was a problem cropping your profile photo.' , 'buddyboss' ), 'error' ); } else { /** * Fires right before the redirect, after processing a new avatar. * * @since BuddyPress 1.1.0 * @since BuddyPress 2.3.4 Add two new parameters to inform about the user id and * about the way the avatar was set (eg: 'crop' or 'camera'). * * @param string $item_id Inform about the user id the avatar was set for. * @param string $value Inform about the way the avatar was set ('crop'). */ do_action( 'xprofile_avatar_uploaded' , (int) $args [ 'item_id' ], 'crop' ); bp_core_add_message( __( 'Your new profile photo was uploaded successfully.' , 'buddyboss' ) ); bp_core_redirect( bp_displayed_user_domain() ); } } /** * Fires right before the loading of the XProfile change avatar screen template file. * * @since BuddyPress 1.0.0 */ do_action( 'xprofile_screen_change_avatar' ); /** * Filters the template to load for the XProfile change avatar screen. * * @since BuddyPress 1.0.0 * * @param string $template Path to the XProfile change avatar template to load. */ bp_core_load_template( apply_filters( 'xprofile_template_change_avatar' , 'members/single/home' ) ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.