Advertisement
Guest User

Buddypress avatar crop

a guest
Feb 23rd, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. <p><?php _e( 'Your avatar will be used on your profile and throughout the site. If there is a <a href="http://gravatar.com">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress'); ?></p>
  2.  
  3. <form action="" method="post" id="avatar-upload-form" class="standard-form" enctype="multipart/form-data">
  4.  
  5. <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) : ?>
  6.  
  7. <?php wp_nonce_field( 'bp_avatar_upload' ); ?>
  8. <p><?php _e( 'Click below to select a JPG, GIF or PNG format photo from your computer and then click \'Upload Image\' to proceed.', 'buddypress' ); ?></p>
  9.  
  10. <p id="avatar-upload">
  11. <input type="file" name="file" id="file" />
  12. <input type="submit" name="upload" id="upload" value="<?php _e( 'Upload Image', 'buddypress' ); ?>" />
  13. <input type="hidden" name="action" id="action" value="bp_avatar_upload" />
  14. </p>
  15.  
  16. <?php if ( bp_get_user_has_avatar() ) : ?>
  17. <p><?php _e( "If you'd like to delete your current avatar but not upload a new one, please use the delete avatar button.", 'buddypress' ); ?></p>
  18. <p><a class="button edit" href="<?php bp_avatar_delete_link(); ?>" title="<?php _e( 'Delete Avatar', 'buddypress' ); ?>"><?php _e( 'Delete My Avatar', 'buddypress' ); ?></a></p>
  19. <?php endif; ?>
  20.  
  21. <?php endif; ?>
  22.  
  23. <?php if ( 'crop-image' == bp_get_avatar_admin_step() ) : ?>
  24.  
  25. <h5><?php _e( 'Crop Your New Avatar', 'buddypress' ); ?></h5>
  26.  
  27. <img src="<?php bp_avatar_to_crop(); ?>" id="avatar-to-crop" class="avatar" alt="<?php _e( 'Avatar to crop', 'buddypress' ); ?>" />
  28.  
  29. <div id="avatar-crop-pane">
  30. <img src="<?php bp_avatar_to_crop(); ?>" id="avatar-crop-preview" class="avatar" alt="<?php _e( 'Avatar preview', 'buddypress' ); ?>" />
  31. </div>
  32.  
  33. <input type="submit" name="avatar-crop-submit" id="avatar-crop-submit" value="<?php _e( 'Crop Image', 'buddypress' ); ?>" />
  34.  
  35. <input type="hidden" name="image_src" id="image_src" value="<?php bp_avatar_to_crop_src(); ?>" />
  36. <input type="hidden" id="x" name="x" />
  37. <input type="hidden" id="y" name="y" />
  38. <input type="hidden" id="w" name="w" />
  39. <input type="hidden" id="h" name="h" />
  40.  
  41. <?php wp_nonce_field( 'bp_avatar_cropstore' ); ?>
  42.  
  43. <?php endif; ?>
  44.  
  45. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement