WP User Avatar - Version 1.6.5

Version Description

  • Bug Fix: Use entire comment object instead of just e-mail address
Download this release

Release Info

Developer bangbay
Plugin Icon 128x128 WP User Avatar
Version 1.6.5
Comparing to
See all releases

Code changes from version 1.5.4 to 1.6.5

css/wp-user-avatar.css CHANGED
@@ -1,7 +1,6 @@
1
  #wpua-errors, #wpua-message, #wpua-readable-size-error, .wpua-error { color: #c00 !important; font-weight: 700 !important; }
2
  #wpua-message, #wpua-readable-size-error { display: none; }
3
  #wpua-preview, #wpua-thumbnail { display: inline-block; text-align: center; vertical-align: top; }
4
- #wpua-preview { margin-right: 10px !important; }
5
  #wpua-preview img, #wpua-thumbnail img { max-height: 96px; border: 1px solid #dfdfdf; display: block; }
6
  .defaultavatarpicker #wpua-preview { width: 32px; height: 32px; margin-right: 0; display: inline-block; overflow: hidden; vertical-align: middle; }
7
  .defaultavatarpicker #wpua-preview img { width: 32px; height: auto; border: 0; }
@@ -9,3 +8,4 @@
9
  #wpua-edit #wpua-remove { margin-left: 10px !important; }
10
  #wpua-slider { width: 22.75em; }
11
  .wpua-hide { display: none !important; }
 
1
  #wpua-errors, #wpua-message, #wpua-readable-size-error, .wpua-error { color: #c00 !important; font-weight: 700 !important; }
2
  #wpua-message, #wpua-readable-size-error { display: none; }
3
  #wpua-preview, #wpua-thumbnail { display: inline-block; text-align: center; vertical-align: top; }
 
4
  #wpua-preview img, #wpua-thumbnail img { max-height: 96px; border: 1px solid #dfdfdf; display: block; }
5
  .defaultavatarpicker #wpua-preview { width: 32px; height: 32px; margin-right: 0; display: inline-block; overflow: hidden; vertical-align: middle; }
6
  .defaultavatarpicker #wpua-preview img { width: 32px; height: auto; border: 0; }
8
  #wpua-edit #wpua-remove { margin-left: 10px !important; }
9
  #wpua-slider { width: 22.75em; }
10
  .wpua-hide { display: none !important; }
11
+ #wpua-upload-messages span { display: block; }
includes/tinymce.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
6
 
7
  if(!defined('ABSPATH')){
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
+ * @version 1.6.5
5
  */
6
 
7
  if(!defined('ABSPATH')){
includes/tinymce/editor_plugin.js CHANGED
@@ -1 +1 @@
1
- (function(){tinymce.PluginManager.requireLangPack('wpUserAvatar');tinymce.create('tinymce.plugins.wpUserAvatar',{init:function(ed,url){ed.addCommand('mceWpUserAvatar',function(){ed.windowManager.open({file:ajaxurl+'?action=wp_user_avatar_tinymce',width:500,height:265,inline:1},{plugin_url:url})});ed.addButton('wpUserAvatar',{title:'Insert WP User Avatar',cmd:'mceWpUserAvatar',image:url+'/../../images/wp-user-avatar-32x32.png'});ed.onNodeChange.add(function(ed,cm,n){cm.setActive('wpUserAvatar',n.nodeName=='IMG')})},createControl:function(n,cm){return null},getInfo:function(){return{longname:'WP User Avatar',author:'Bangbay Siboliban',authorurl:'http://siboliban.org/',infourl:'http://wordpress.org/extend/plugins/wp-user-avatar/',version:"1.5.4"}}});tinymce.PluginManager.add('wpUserAvatar',tinymce.plugins.wpUserAvatar)})();
1
+ (function(){tinymce.PluginManager.requireLangPack('wpUserAvatar');tinymce.create('tinymce.plugins.wpUserAvatar',{init:function(ed,url){ed.addCommand('mceWpUserAvatar',function(){ed.windowManager.open({file:ajaxurl+'?action=wp_user_avatar_tinymce',width:500,height:265,inline:1},{plugin_url:url})});ed.addButton('wpUserAvatar',{title:'Insert WP User Avatar',cmd:'mceWpUserAvatar',image:url+'/../../images/wp-user-avatar-32x32.png'});ed.onNodeChange.add(function(ed,cm,n){cm.setActive('wpUserAvatar',n.nodeName=='IMG')})},createControl:function(n,cm){return null},getInfo:function(){return{longname:'WP User Avatar',author:'Bangbay Siboliban',authorurl:'http://siboliban.org/',infourl:'http://wordpress.org/extend/plugins/wp-user-avatar/',version:"1.6.5"}}});tinymce.PluginManager.add('wpUserAvatar',tinymce.plugins.wpUserAvatar)})();
includes/tinymce/window.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
6
 
7
  if(!defined('ABSPATH')){
@@ -18,7 +18,7 @@ if(!defined('ABSPATH')){
18
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
19
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
20
  <script type="text/javascript">
21
- function insert_wp_user_avatar(){
22
  // Custom shortcode values
23
  var shortcode;
24
  var user = document.getElementById('wp_user_avatar_user').value;
@@ -122,7 +122,7 @@ if(!defined('ABSPATH')){
122
  </p>
123
 
124
  <div class="mceActionPanel">
125
- <input type="submit" id="insert" class="button-primary" name="insert" value="<?php _e('Insert into Post'); ?>" onclick="insert_wp_user_avatar();" />
126
  </div>
127
  </form>
128
  </body>
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
+ * @version 1.6.5
5
  */
6
 
7
  if(!defined('ABSPATH')){
18
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
19
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
20
  <script type="text/javascript">
21
+ function wpuaInsertAvatar(){
22
  // Custom shortcode values
23
  var shortcode;
24
  var user = document.getElementById('wp_user_avatar_user').value;
122
  </p>
123
 
124
  <div class="mceActionPanel">
125
+ <input type="submit" id="insert" class="button-primary" name="insert" value="<?php _e('Insert into Post'); ?>" onclick="wpuaInsertAvatar();" />
126
  </div>
127
  </form>
128
  </body>
js/wp-user-avatar-admin.js CHANGED
@@ -1,15 +1,20 @@
1
  jQuery(function(){
2
  // Show size info only if allow uploads is checked
3
  jQuery('#wp_user_avatar_allow_upload').change(function(){
4
- jQuery('#wpua-size-limit').removeClass('wpua-hide').toggle(jQuery('#wp_user_avatar_allow_upload').is(':checked'));
 
 
 
 
5
  });
6
  // Hide Gravatars if disable Gravatars is checked
7
  jQuery('#wp_user_avatar_disable_gravatar').change(function(){
8
  if(jQuery('#wp-avatars').length){
9
- jQuery('#wp-avatars').toggle(!jQuery('#wp_user_avatar_disable_gravatar').is(':checked'));
10
  jQuery('#wp_user_avatar_radio').trigger('click');
 
 
11
  }
12
- jQuery('#wpua-message').show();
13
  });
14
  // Add size slider
15
  jQuery('#wpua-slider').slider({
1
  jQuery(function(){
2
  // Show size info only if allow uploads is checked
3
  jQuery('#wp_user_avatar_allow_upload').change(function(){
4
+ jQuery('#wpua-contributors-subscribers').slideToggle(jQuery('#wp_user_avatar_allow_upload').is(':checked'));
5
+ });
6
+ // Show resize info only if resize uploads is checked
7
+ jQuery('#wp_user_avatar_resize_upload').change(function(){
8
+ jQuery('#wpua-resize-sizes').slideToggle(jQuery('#wp_user_avatar_resize_upload').is(':checked'));
9
  });
10
  // Hide Gravatars if disable Gravatars is checked
11
  jQuery('#wp_user_avatar_disable_gravatar').change(function(){
12
  if(jQuery('#wp-avatars').length){
13
+ jQuery('#wp-avatars').slideToggle(!jQuery('#wp_user_avatar_disable_gravatar').is(':checked'));
14
  jQuery('#wp_user_avatar_radio').trigger('click');
15
+ } else {
16
+ jQuery('#wpua-message').show();
17
  }
 
18
  });
19
  // Add size slider
20
  jQuery('#wpua-slider').slider({
js/wp-user-avatar-user.js ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Remove WP User Avatar
2
+ function wpuaRemoveAvatar(avatar_thumb){
3
+ jQuery('body').on('click', '#wpua-remove', function(e){
4
+ e.preventDefault();
5
+ jQuery(this).hide();
6
+ jQuery('#wpua-edit, #wpua-thumbnail').hide();
7
+ jQuery('#wpua-preview').find('img').attr('src', avatar_thumb).removeAttr('width', "").removeAttr('height', "");
8
+ jQuery('#wp-user-avatar').val("");
9
+ jQuery('#wpua-message').show();
10
+ jQuery('#wp_user_avatar_radio').trigger('click');
11
+ });
12
+ }
13
+
14
+ jQuery(function(){
15
+ // Add enctype to form with JavaScript as backup
16
+ jQuery('#your-profile').attr('enctype', 'multipart/form-data');
17
+ // Remove settings
18
+ wpuaRemoveAvatar(wpua_custom.avatar_thumb);
19
+ });
js/wp-user-avatar.js CHANGED
@@ -1 +1 @@
1
- function wpuaMediaUploader(c,d,f){wp.media.wpUserAvatar={get:function(){return wp.media.view.settings.post.wpUserAvatarId},set:function(a){var b=wp.media.view.settings;b.post.wpUserAvatarId=a;b.post.wpUserAvatarSrc=jQuery('div.attachment-info').find('img').attr('src');if(b.post.wpUserAvatarId){wpuaSetAvatar(b.post.wpUserAvatarId,b.post.wpUserAvatarSrc);jQuery('#wp_user_avatar_radio').trigger('click')}},frame:function(){if(this._frame){return this._frame}this._frame=wp.media({state:'library',states:[new wp.media.controller.Library({title:d+": "+c})]});this._frame.on('open',function(){var a=this.state().get('selection');id=jQuery('#wp-user-avatar').val();attachment=wp.media.attachment(id);attachment.fetch();a.add(attachment?[attachment]:[])},this._frame);this._frame.on('toolbar:create:select',function(a){this.createSelectToolbar(a,{text:f})},this._frame);this._frame.state('library').on('select',this.select);return this._frame},select:function(a){var b=wp.media.view.settings,selection=this.get('selection').single();wp.media.wpUserAvatar.set(selection?selection.id:-1)},init:function(){jQuery('body').on('click','#wpua-add',function(e){e.preventDefault();e.stopPropagation();wp.media.wpUserAvatar.frame().open()})}};jQuery(wp.media.wpUserAvatar.init)}function wpuaSetAvatar(a,b){jQuery('#wp-user-avatar',window.parent.document).val(a);jQuery('#wpua-preview',window.parent.document).find('img').attr('src',b).removeAttr('width',"").removeAttr('height',"");jQuery('#wpua-message',window.parent.document).show();jQuery('#wpua-remove',window.parent.document).removeClass('wpua-hide').show();jQuery('#wpua-thumbnail',window.parent.document).hide();jQuery('#wp_user_avatar_radio',window.parent.document).trigger('click');wp.media.wpUserAvatar.frame().close()}function wpuaRemoveAvatar(a){jQuery('body').on('click','#wpua-remove',function(e){e.preventDefault();jQuery(this).hide();jQuery('#wpua-edit, #wpua-thumbnail').hide();jQuery('#wpua-preview').find('img').attr('src',a).removeAttr('width',"").removeAttr('height',"");jQuery('#wp-user-avatar').val("");jQuery('#wpua-message').show();jQuery('#wp_user_avatar_radio').trigger('click')})}jQuery(function(){jQuery('#your-profile').attr('enctype','multipart/form-data');if(typeof(wp)!='undefined'){wpuaMediaUploader(wpua_custom.section,wpua_custom.edit_image,wpua_custom.select_image)}wpuaRemoveAvatar(wpua_custom.avatar_thumb)});
1
+ function wpuaMediaUploader(section,edit_text,insert_text){wp.media.wpUserAvatar={get:function(){return wp.media.view.settings.post.wpUserAvatarId},set:function(id){var settings=wp.media.view.settings;settings.post.wpUserAvatarId=id;settings.post.wpUserAvatarSrc=jQuery('div.attachment-info').find('img').attr('src');if(settings.post.wpUserAvatarId){wpuaSetAvatar(settings.post.wpUserAvatarId,settings.post.wpUserAvatarSrc);jQuery('#wp_user_avatar_radio').trigger('click')}},frame:function(){if(this._frame){return this._frame}this._frame=wp.media({state:'library',states:[new wp.media.controller.Library({title:edit_text+": "+section})]});this._frame.on('open',function(){var selection=this.state().get('selection');id=jQuery('#wp-user-avatar').val();attachment=wp.media.attachment(id);attachment.fetch();selection.add(attachment?[attachment]:[])},this._frame);this._frame.on('toolbar:create:select',function(toolbar){this.createSelectToolbar(toolbar,{text:insert_text})},this._frame);this._frame.state('library').on('select',this.select);return this._frame},select:function(id){var settings=wp.media.view.settings,selection=this.get('selection').single();wp.media.wpUserAvatar.set(selection?selection.id:-1)},init:function(){jQuery('body').on('click','#wpua-add',function(e){e.preventDefault();e.stopPropagation();wp.media.wpUserAvatar.frame().open()})}};jQuery(wp.media.wpUserAvatar.init)}function wpuaSetAvatar(attachment,imageURL){jQuery('#wp-user-avatar',window.parent.document).val(attachment);jQuery('#wpua-preview',window.parent.document).find('img').attr('src',imageURL).removeAttr('width',"").removeAttr('height',"");jQuery('#wpua-message',window.parent.document).show();jQuery('#wpua-remove',window.parent.document).removeClass('wpua-hide').show();jQuery('#wpua-thumbnail',window.parent.document).hide();jQuery('#wp_user_avatar_radio',window.parent.document).trigger('click');wp.media.wpUserAvatar.frame().close()}function wpuaRemoveAvatar(avatar_thumb){jQuery('body').on('click','#wpua-remove',function(e){e.preventDefault();jQuery(this).hide();jQuery('#wpua-edit, #wpua-thumbnail').hide();jQuery('#wpua-preview').find('img').attr('src',avatar_thumb).removeAttr('width',"").removeAttr('height',"");jQuery('#wp-user-avatar').val("");jQuery('#wpua-message').show();jQuery('#wp_user_avatar_radio').trigger('click')})}jQuery(function(){jQuery('#your-profile').attr('enctype','multipart/form-data');if(typeof(wp)!='undefined'){wpuaMediaUploader(wpua_custom.section,wpua_custom.edit_image,wpua_custom.select_image)}wpuaRemoveAvatar(wpua_custom.avatar_thumb)});
lang/wp-user-avatar-de_DE.mo CHANGED
Binary file
lang/wp-user-avatar-de_DE.po CHANGED
@@ -4,9 +4,9 @@
4
  #
5
  msgid ""
6
  msgstr ""
7
- "Project-Id-Version: WP User Avatar 1.5.4\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
- "PO-Revision-Date: 2013-07-31 00:00-0000\n"
10
  "Language: de_DE\n"
11
  "Last-Translator: WP User Avatar\n"
12
  "Language-Team: WP User Avatar\n"
@@ -14,32 +14,45 @@ msgstr ""
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
- #: wp-user-avatar.php:341
18
- #: wp-user-avatar.php:798
19
  msgid "Click %s to save your changes"
20
  msgstr "Klicken Sie %s, um Ihre Änderungen zu speichern"
21
 
22
- #: wp-user-avatar.php:870
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Einen Avatar-Knopf zum WYSIWYG-Editor hinzufügen"
25
 
26
- #: wp-user-avatar.php:875
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Mitarbeiter und Abonnenten erlauben, Avatare hochzuladen"
29
 
30
- #: wp-user-avatar.php:880
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Gravatar deaktivieren und nur lokale Avatare verwenden"
33
 
34
- #: wp-user-avatar.php:888
35
- #: wp-user-avatar.php:893
36
- msgid "Upload Size Limit (only for Contributors & Subscribers)"
37
- msgstr "Dateigrößenbeschränkung (nur für Mitarbeiter und Abonnenten)"
38
 
39
- #: wp-user-avatar.php:902
 
 
 
 
 
40
  msgid "Allow users to edit avatars"
41
  msgstr "Benutzer erlauben, Avatare bearbeiten"
42
 
 
 
 
 
 
 
 
 
43
  #. Plugin Name of the plugin/theme
44
  msgid "WP User Avatar"
45
  msgstr "WP-Benutzer-Avatar"
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.6.5\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2013-10-03 00:00-0000\n"
10
  "Language: de_DE\n"
11
  "Last-Translator: WP User Avatar\n"
12
  "Language-Team: WP User Avatar\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
+ #: wp-user-avatar.php:395
18
+ #: wp-user-avatar.php:877
19
  msgid "Click %s to save your changes"
20
  msgstr "Klicken Sie %s, um Ihre Änderungen zu speichern"
21
 
22
+ #: wp-user-avatar.php:950
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Einen Avatar-Knopf zum WYSIWYG-Editor hinzufügen"
25
 
26
+ #: wp-user-avatar.php:956
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Mitarbeiter und Abonnenten erlauben, Avatare hochzuladen"
29
 
30
+ #: wp-user-avatar.php:962
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Gravatar deaktivieren und nur lokale Avatare verwenden"
33
 
34
+ #: wp-user-avatar.php:973
35
+ #: wp-user-avatar.php:978
36
+ msgid "Upload Size Limit"
37
+ msgstr "Dateigrößenbeschränkung"
38
 
39
+ #: wp-user-avatar.php:973
40
+ #: wp-user-avatar.php:978
41
+ msgid "(only for Contributors & Subscribers)"
42
+ msgstr "(nur für Mitarbeiter und Abonnenten)"
43
+
44
+ #: wp-user-avatar.php:988
45
  msgid "Allow users to edit avatars"
46
  msgstr "Benutzer erlauben, Avatare bearbeiten"
47
 
48
+ #: wp-user-avatar.php:994
49
+ msgid "Resize avatars on upload"
50
+ msgstr "Resize Avatare beim Upload"
51
+
52
+ #: wp-user-avatar.php:1006
53
+ msgid "Crop avatars to exact dimensions"
54
+ msgstr "Avatare auf exakte Größe beschneiden"
55
+
56
  #. Plugin Name of the plugin/theme
57
  msgid "WP User Avatar"
58
  msgstr "WP-Benutzer-Avatar"
lang/wp-user-avatar-es_ES.mo CHANGED
Binary file
lang/wp-user-avatar-es_ES.po CHANGED
@@ -4,9 +4,9 @@
4
  #
5
  msgid ""
6
  msgstr ""
7
- "Project-Id-Version: WP User Avatar 1.5.4\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
- "PO-Revision-Date: 2013-07-31 00:00-0000\n"
10
  "Language: es_ES\n"
11
  "Last-Translator: WP User Avatar\n"
12
  "Language-Team: WP User Avatar\n"
@@ -14,32 +14,45 @@ msgstr ""
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
- #: wp-user-avatar.php:341
18
- #: wp-user-avatar.php:798
19
  msgid "Click %s to save your changes"
20
  msgstr "Haz clic %s para guardar los cambios"
21
 
22
- #: wp-user-avatar.php:870
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Añadir botón avatar al editor visual"
25
 
26
- #: wp-user-avatar.php:875
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Permitir los colaboradores y los suscriptores subir avatares"
29
 
30
- #: wp-user-avatar.php:880
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Desactivar Gravatar y utilizar sólo los avatares locales"
33
 
34
- #: wp-user-avatar.php:888
35
- #: wp-user-avatar.php:893
36
- msgid "Upload Size Limit (only for Contributors & Subscribers)"
37
- msgstr "Sube límite de tamaño (para colaboradores y suscriptores)"
38
 
39
- #: wp-user-avatar.php:902
 
 
 
 
 
40
  msgid "Allow users to edit avatars"
41
  msgstr "Permitir a los usuarios editar avatar"
42
 
 
 
 
 
 
 
 
 
43
  #. Plugin Name of the plugin/theme
44
  msgid "WP User Avatar"
45
  msgstr "WP-Usuario-Avatar"
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.6.5\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2013-10-03 00:00-0000\n"
10
  "Language: es_ES\n"
11
  "Last-Translator: WP User Avatar\n"
12
  "Language-Team: WP User Avatar\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
+ #: wp-user-avatar.php:395
18
+ #: wp-user-avatar.php:877
19
  msgid "Click %s to save your changes"
20
  msgstr "Haz clic %s para guardar los cambios"
21
 
22
+ #: wp-user-avatar.php:950
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Añadir botón avatar al editor visual"
25
 
26
+ #: wp-user-avatar.php:956
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Permitir los colaboradores y los suscriptores subir avatares"
29
 
30
+ #: wp-user-avatar.php:962
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Desactivar Gravatar y utilizar sólo los avatares locales"
33
 
34
+ #: wp-user-avatar.php:973
35
+ #: wp-user-avatar.php:978
36
+ msgid "Upload Size Limit"
37
+ msgstr "Sube límite de tamaño"
38
 
39
+ #: wp-user-avatar.php:973
40
+ #: wp-user-avatar.php:978
41
+ msgid "(only for Contributors & Subscribers)"
42
+ msgstr "(para colaboradores y suscriptores)"
43
+
44
+ #: wp-user-avatar.php:988
45
  msgid "Allow users to edit avatars"
46
  msgstr "Permitir a los usuarios editar avatar"
47
 
48
+ #: wp-user-avatar.php:994
49
+ msgid "Resize avatars on upload"
50
+ msgstr "Cambiar el tamaño de avatares en carga"
51
+
52
+ #: wp-user-avatar.php:1006
53
+ msgid "Crop avatars to exact dimensions"
54
+ msgstr "Recortar los avatares a sus dimensiones exactas"
55
+
56
  #. Plugin Name of the plugin/theme
57
  msgid "WP User Avatar"
58
  msgstr "WP-Usuario-Avatar"
lang/wp-user-avatar-fr_FR.mo CHANGED
Binary file
lang/wp-user-avatar-fr_FR.po CHANGED
@@ -4,9 +4,9 @@
4
  #
5
  msgid ""
6
  msgstr ""
7
- "Project-Id-Version: WP User Avatar 1.5.4\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
- "PO-Revision-Date: 2013-07-31 00:00-0000\n"
10
  "Language: fr_FR\n"
11
  "Last-Translator: WP User Avatar\n"
12
  "Language-Team: WP User Avatar\n"
@@ -14,32 +14,45 @@ msgstr ""
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
- #: wp-user-avatar.php:341
18
- #: wp-user-avatar.php:798
19
  msgid "Click %s to save your changes"
20
  msgstr "Cliquez sur %s pour enregistrer vos modifications"
21
 
22
- #: wp-user-avatar.php:870
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Ajouter le bouton avatar sur l'éditeur visuel"
25
 
26
- #: wp-user-avatar.php:875
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Permettre aux contributeurs et aux abonnés d'envoyer des avatars"
29
 
30
- #: wp-user-avatar.php:880
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Désactiver Gravatar et utiliser les avatars fournis"
33
 
34
- #: wp-user-avatar.php:888
35
- #: wp-user-avatar.php:893
36
- msgid "Upload Size Limit (only for Contributors & Subscribers)"
37
- msgstr "Taille limite d'envoi de fichiers (pour contributeurs et abonnés)"
38
 
39
- #: wp-user-avatar.php:902
 
 
 
 
 
40
  msgid "Allow users to edit avatars"
41
  msgstr "Permettre aux utilisateurs de modifier avatar"
42
 
 
 
 
 
 
 
 
 
43
  #. Plugin Name of the plugin/theme
44
  msgid "WP User Avatar"
45
  msgstr "WP-Utilisateur-Avatar"
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.6.5\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2013-10-03 00:00-0000\n"
10
  "Language: fr_FR\n"
11
  "Last-Translator: WP User Avatar\n"
12
  "Language-Team: WP User Avatar\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
+ #: wp-user-avatar.php:395
18
+ #: wp-user-avatar.php:877
19
  msgid "Click %s to save your changes"
20
  msgstr "Cliquez sur %s pour enregistrer vos modifications"
21
 
22
+ #: wp-user-avatar.php:950
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Ajouter le bouton avatar sur l'éditeur visuel"
25
 
26
+ #: wp-user-avatar.php:956
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Permettre aux contributeurs et aux abonnés d'envoyer des avatars"
29
 
30
+ #: wp-user-avatar.php:962
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Désactiver Gravatar et utiliser les avatars fournis"
33
 
34
+ #: wp-user-avatar.php:973
35
+ #: wp-user-avatar.php:978
36
+ msgid "Upload Size Limit"
37
+ msgstr "Taille limite d'envoi de fichiers"
38
 
39
+ #: wp-user-avatar.php:973
40
+ #: wp-user-avatar.php:978
41
+ msgid "(only for Contributors & Subscribers)"
42
+ msgstr "(pour contributeurs et abonnés)"
43
+
44
+ #: wp-user-avatar.php:988
45
  msgid "Allow users to edit avatars"
46
  msgstr "Permettre aux utilisateurs de modifier avatar"
47
 
48
+ #: wp-user-avatar.php:994
49
+ msgid "Resize avatars on upload"
50
+ msgstr "Redimensionner avatars lors du téléchargement"
51
+
52
+ #: wp-user-avatar.php:1006
53
+ msgid "Crop avatars to exact dimensions"
54
+ msgstr "Recadrer les avatars pour parvenir aux dimensions exactes"
55
+
56
  #. Plugin Name of the plugin/theme
57
  msgid "WP User Avatar"
58
  msgstr "WP-Utilisateur-Avatar"
lang/wp-user-avatar-sv_SE.mo CHANGED
Binary file
lang/wp-user-avatar-sv_SE.po CHANGED
@@ -4,9 +4,9 @@
4
  #
5
  msgid ""
6
  msgstr ""
7
- "Project-Id-Version: WP User Avatar 1.5.4\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
- "PO-Revision-Date: 2013-07-31 00:00-0000\n"
10
  "Language: sv_SE\n"
11
  "Last-Translator: Mattias Tengblad <mst@eyesx.com>\n"
12
  "Language-Team: WordPress Sverige <info@wpsv.se>\n"
@@ -14,32 +14,45 @@ msgstr ""
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
- #: wp-user-avatar.php:341
18
- #: wp-user-avatar.php:798
19
  msgid "Click %s to save your changes"
20
  msgstr "Klicka på %s för att spara dina ändringar"
21
 
22
- #: wp-user-avatar.php:870
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Lägg till knapp för avatarer i den visuella redigeraren"
25
 
26
- #: wp-user-avatar.php:875
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Tillåt medarbetare & prenumeranter att ladda upp avatarer"
29
 
30
- #: wp-user-avatar.php:880
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Inaktivera Gravatar och använd endast lokala avatarer"
33
 
34
- #: wp-user-avatar.php:888
35
- #: wp-user-avatar.php:893
36
- msgid "Upload Size Limit (only for Contributors & Subscribers)"
37
- msgstr "Storleksgräns för uppladdningar (endast för medarbetare & prenumeranter)"
38
 
39
- #: wp-user-avatar.php:902
 
 
 
 
 
40
  msgid "Allow users to edit avatars"
41
  msgstr "Tillåt användare att redigera avatarer"
42
 
 
 
 
 
 
 
 
 
43
  #. Plugin Name of the plugin/theme
44
  msgid "WP User Avatar"
45
  msgstr "Visningsbild (avatar)"
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.6.5\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2013-10-03 00:00-0000\n"
10
  "Language: sv_SE\n"
11
  "Last-Translator: Mattias Tengblad <mst@eyesx.com>\n"
12
  "Language-Team: WordPress Sverige <info@wpsv.se>\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
 
17
+ #: wp-user-avatar.php:395
18
+ #: wp-user-avatar.php:877
19
  msgid "Click %s to save your changes"
20
  msgstr "Klicka på %s för att spara dina ändringar"
21
 
22
+ #: wp-user-avatar.php:950
23
  msgid "Add avatar button to Visual Editor"
24
  msgstr "Lägg till knapp för avatarer i den visuella redigeraren"
25
 
26
+ #: wp-user-avatar.php:956
27
  msgid "Allow Contributors & Subscribers to upload avatars"
28
  msgstr "Tillåt medarbetare & prenumeranter att ladda upp avatarer"
29
 
30
+ #: wp-user-avatar.php:962
31
  msgid "Disable Gravatar and use only local avatars"
32
  msgstr "Inaktivera Gravatar och använd endast lokala avatarer"
33
 
34
+ #: wp-user-avatar.php:973
35
+ #: wp-user-avatar.php:978
36
+ msgid "Upload Size Limit"
37
+ msgstr "Storleksgräns för uppladdningar"
38
 
39
+ #: wp-user-avatar.php:973
40
+ #: wp-user-avatar.php:978
41
+ msgid "(only for Contributors & Subscribers)"
42
+ msgstr "(endast för medarbetare & prenumeranter)"
43
+
44
+ #: wp-user-avatar.php:988
45
  msgid "Allow users to edit avatars"
46
  msgstr "Tillåt användare att redigera avatarer"
47
 
48
+ #: wp-user-avatar.php:994
49
+ msgid "Resize avatars on upload"
50
+ msgstr "Ändra storlek på avatarer på uppladdning"
51
+
52
+ #: wp-user-avatar.php:1006
53
+ msgid "Crop avatars to exact dimensions"
54
+ msgstr "Beskär avatarer till exakta dimensioner"
55
+
56
  #. Plugin Name of the plugin/theme
57
  msgid "WP User Avatar"
58
  msgstr "Visningsbild (avatar)"
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: bangbay
4
  Donate link: http://siboliban.org/donate
5
  Tags: author image, author photo, author avatar, avatar, bbPress, profile avatar, profile image, user avatar, user image, user photo
6
  Requires at least: 3.5
7
- Tested up to: 3.7-alpha-24927
8
- Stable tag: 1.5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -22,7 +22,7 @@ WP User Avatar also lets you:
22
  * Disable [Gravatar](http://gravatar.com/) avatars and use only local avatars.
23
  * Use the <code>[avatar]</code> shortcode in your posts. The shortcode will work with any theme, whether it has avatar support or not.
24
  * Allow Contributors and Subscribers to upload their own avatars.
25
- * Limit upload file size for Contributors and Subscribers.
26
 
27
  == Installation ==
28
 
@@ -126,9 +126,10 @@ First, choose a theme that has avatar support. In your theme, you have a choice
126
 
127
  1. Allows you to use the values "original", "large", "medium", or "thumbnail" for your avatar size.
128
  2. Doesn't add a fixed width and height to the image if you use the aforementioned values. This will give you more flexibility to resize the image with CSS.
129
- 3. Optionally adds CSS classes "alignleft", "alignright", or "aligncenter" to position your avatar.
130
- 4. Shows nothing if the user has no WP User Avatar image.
131
- 5. Shows the user's [Gravatar](http://gravatar.com/) avatar or Default Avatar only if "Show Avatars" is enabled in your WP User Avatar settings.
 
132
 
133
  = get_avatar =
134
 
@@ -143,17 +144,9 @@ First, choose a theme that has avatar support. In your theme, you have a choice
143
  = Can I create a custom Default Avatar? =
144
  In your WP User Avatar settings, you can upload your own Default Avatar.
145
 
146
- = Can I insert WP User Avatar directly into a post? =
147
-
148
- You can use the <code>[avatar]</code> shortcode in your posts. It will detect the author of the post or you can specify an author by username. You can specify a size, alignment, and link, but they are optional. For links, you can link to the original image file, attachment page, or a custom URL.
149
-
150
- `[avatar user="admin" size="96" align="left" link="file"]`
151
-
152
- Outputs:
153
 
154
- `<a href="{fileURL}" class="wp-user-avatar-link wp-user-avatar-file">
155
- <img src="{imageURL}" width="96" height="96" class="wp-user-avatar wp-user-avatar-96 alignleft" />
156
- </a>`
157
 
158
  = Can Contributors or Subscribers choose their own WP User Avatar image? =
159
  Yes, if you enable "Allow Contributors & Subscribers to upload avatars" in the WP User Avatar settings. These users will see a slightly different interface because they are allowed only one image upload.
@@ -162,14 +155,14 @@ Yes, if you enable "Allow Contributors & Subscribers to upload avatars" in the W
162
 
163
  Yes, for registered users. Non-registered comment authors will show their [Gravatar](http://gravatar.com/) avatars or Default Avatar.
164
 
165
- = Can I disable all Gravatar avatars? =
166
-
167
- In your WP User Avatar settings, you can select "Disable Gravatar — Use only local avatars" to disable all [Gravatar](http://gravatar.com/) avatars on your site and replace them with your Default Avatar. This will affect your registered users and non-registered comment authors.
168
-
169
  = Will WP User Avatar work with bbPress? =
170
 
171
  Yes!
172
 
 
 
 
 
173
  = Will WP User Avatar work with WordPress Multisite? =
174
 
175
  Yes, however, each site has its own avatar settings. If you set a WP User Avatar image on one site, you have to set it again for different sites in your network.
@@ -178,6 +171,18 @@ Yes, however, each site has its own avatar settings. If you set a WP User Avatar
178
 
179
  For Administrators, WP User Avatar adds a column with avatar thumbnails to your Users list table. If "Show Avatars" is enabled in your WP User Avatar settings, you will see avatars to the left of each username instead of in a new column.
180
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  = What CSS can I use with WP User Avatar? =
182
 
183
  WP User Avatar will add the CSS classes "wp-user-avatar" and "wp-user-avatar-{size}" to your image. If you add an alignment, the corresponding alignment class will be added:
@@ -219,6 +224,85 @@ Outputs:
219
  * <code>has_wp_user_avatar</code>: checks if the user has a WP User Avatar image
220
  * [See example usage here](http://wordpress.org/extend/plugins/wp-user-avatar/installation/)
221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
  == Screenshots ==
223
 
224
  1. WP User Avatar admin settings.
@@ -230,8 +314,47 @@ Outputs:
230
 
231
  == Changelog ==
232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  = 1.5.4 =
234
- * Add: Option to enable avatar editing privilege for Subscribers
235
  * Add: Swedish translation
236
  * Update: Move inline JavaScript to wp-user-avatar.js and wp-user-avatar-admin.js
237
  * Update: Load JavaScript in footer
@@ -263,7 +386,7 @@ Outputs:
263
  * Bug Fix: Use wp_die for errors
264
 
265
  = 1.4 =
266
- * Add: Uploader for Subscribers and Contributors
267
  * Add: Media states for avatar images
268
  * Add: Plugin admin settings
269
  * Update: Change support only to WP 3.4+
4
  Donate link: http://siboliban.org/donate
5
  Tags: author image, author photo, author avatar, avatar, bbPress, profile avatar, profile image, user avatar, user image, user photo
6
  Requires at least: 3.5
7
+ Tested up to: 3.7.1
8
+ Stable tag: 1.6.5
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
22
  * Disable [Gravatar](http://gravatar.com/) avatars and use only local avatars.
23
  * Use the <code>[avatar]</code> shortcode in your posts. The shortcode will work with any theme, whether it has avatar support or not.
24
  * Allow Contributors and Subscribers to upload their own avatars.
25
+ * Limit upload file size and image dimensions for Contributors and Subscribers.
26
 
27
  == Installation ==
28
 
126
 
127
  1. Allows you to use the values "original", "large", "medium", or "thumbnail" for your avatar size.
128
  2. Doesn't add a fixed width and height to the image if you use the aforementioned values. This will give you more flexibility to resize the image with CSS.
129
+ 3. Allows you to use custom image sizes registered with [<code>add_image_size</code>](http://codex.wordpress.org/Function_Reference/add_image_size) (fixed width and height are added to the image).
130
+ 4. Optionally adds CSS classes "alignleft", "alignright", or "aligncenter" to position your avatar.
131
+ 5. Shows nothing if the user has no WP User Avatar image.
132
+ 6. Shows the user's [Gravatar](http://gravatar.com/) avatar or Default Avatar only if "Show Avatars" is enabled in your WP User Avatar settings.
133
 
134
  = get_avatar =
135
 
144
  = Can I create a custom Default Avatar? =
145
  In your WP User Avatar settings, you can upload your own Default Avatar.
146
 
147
+ = Can I disable all Gravatar avatars? =
 
 
 
 
 
 
148
 
149
+ In your WP User Avatar settings, you can select "Disable Gravatar — Use only local avatars" to disable all [Gravatar](http://gravatar.com/) avatars on your site and replace them with your Default Avatar. This will affect your registered users and non-registered comment authors.
 
 
150
 
151
  = Can Contributors or Subscribers choose their own WP User Avatar image? =
152
  Yes, if you enable "Allow Contributors & Subscribers to upload avatars" in the WP User Avatar settings. These users will see a slightly different interface because they are allowed only one image upload.
155
 
156
  Yes, for registered users. Non-registered comment authors will show their [Gravatar](http://gravatar.com/) avatars or Default Avatar.
157
 
 
 
 
 
158
  = Will WP User Avatar work with bbPress? =
159
 
160
  Yes!
161
 
162
+ = Will WP User Avatar work with BuddyPress? =
163
+
164
+ No, BuddyPress has its own custom avatar functions and WP User Avatar will override only some of them. It's best to use BuddyPress without WP User Avatar.
165
+
166
  = Will WP User Avatar work with WordPress Multisite? =
167
 
168
  Yes, however, each site has its own avatar settings. If you set a WP User Avatar image on one site, you have to set it again for different sites in your network.
171
 
172
  For Administrators, WP User Avatar adds a column with avatar thumbnails to your Users list table. If "Show Avatars" is enabled in your WP User Avatar settings, you will see avatars to the left of each username instead of in a new column.
173
 
174
+ = Can I insert WP User Avatar directly into a post? =
175
+
176
+ You can use the <code>[avatar]</code> shortcode in your posts. It will detect the author of the post or you can specify an author by username. You can specify a size, alignment, and link, but they are optional. For links, you can link to the original image file, attachment page, or a custom URL.
177
+
178
+ `[avatar user="admin" size="96" align="left" link="file"]`
179
+
180
+ Outputs:
181
+
182
+ `<a href="{fileURL}" class="wp-user-avatar-link wp-user-avatar-file">
183
+ <img src="{imageURL}" width="96" height="96" class="wp-user-avatar wp-user-avatar-96 alignleft" />
184
+ </a>`
185
+
186
  = What CSS can I use with WP User Avatar? =
187
 
188
  WP User Avatar will add the CSS classes "wp-user-avatar" and "wp-user-avatar-{size}" to your image. If you add an alignment, the corresponding alignment class will be added:
224
  * <code>has_wp_user_avatar</code>: checks if the user has a WP User Avatar image
225
  * [See example usage here](http://wordpress.org/extend/plugins/wp-user-avatar/installation/)
226
 
227
+ == Advanced Settings ==
228
+
229
+ You can change the HTML structure of the WP User Avatar section on your profile edit page by using the functions <code>wpua_before_avatar</code> and <code>wpua_after_avatar</code>. By default, the avatar code is structured like this:
230
+
231
+ `
232
+ <h3>Avatar</h3>
233
+ <table class="form-table">
234
+ <tr>
235
+ <th><label for="wp_user_avatar">Image</label></th>
236
+ <td>
237
+ <input type="hidden" name="wp-user-avatar" id="wp-user-avatar" value="{attachmentID}" />
238
+ <p id="wpua-add-button">
239
+ <button type="button" class="button" id="wpua-add" name="wpua-add">Edit Image</button>
240
+ </p>
241
+ <p id="wpua-preview">
242
+ <img src="{imageURL}" alt="" />
243
+ Original Size
244
+ </p>
245
+ <p id="wpua-thumbnail">
246
+ <img src="{imageURL}" alt="" />
247
+ Thumbnail
248
+ </p>
249
+ <p id="wpua-remove-button">
250
+ <button type="button" class="button" id="wpua-remove" name="wpua-remove">Remove</button>
251
+ </p>
252
+ <p id="wpua-message">
253
+ Click &ldquo;Update Profile&rdquo; to save your changes
254
+ </p>
255
+ </td>
256
+ </tr>
257
+ </table>
258
+ `
259
+
260
+ To strip out the table, you would add the following filters to the <code>functions.php</code> file in your theme:
261
+
262
+ `
263
+ remove_action('wpua_before_avatar', 'wpua_do_before_avatar');
264
+ remove_action('wpua_after_avatar', 'wpua_do_after_avatar');
265
+ `
266
+
267
+ To add your own wrapper, you could create something like this:
268
+
269
+ `
270
+ function my_before_avatar(){
271
+ echo '<div id="my-avatar">';
272
+ }
273
+ add_action('wpua_before_avatar', 'my_before_avatar');
274
+
275
+ function my_after_avatar(){
276
+ echo '</div>';
277
+ }
278
+ add_action('wpua_after_avatar', 'my_after_avatar');
279
+ `
280
+
281
+ This would output:
282
+
283
+ `
284
+ <div id="my-avatar">
285
+ <input type="hidden" name="wp-user-avatar" id="wp-user-avatar" value="{attachmentID}" />
286
+ <p id="wpua-add-button">
287
+ <button type="button" class="button" id="wpua-add" name="wpua-add">Edit Image</button>
288
+ </p>
289
+ <p id="wpua-preview">
290
+ <img src="{imageURL}" alt="" />
291
+ Original Size
292
+ </p>
293
+ <p id="wpua-thumbnail">
294
+ <img src="{imageURL}" alt="" />
295
+ Thumbnail
296
+ </p>
297
+ <p id="wpua-remove-button">
298
+ <button type="button" class="button" id="wpua-remove" name="wpua-remove">Remove</button>
299
+ </p>
300
+ <p id="wpua-message">
301
+ Click &ldquo;Update Profile&rdquo; to save your changes
302
+ </p>
303
+ </div>
304
+ `
305
+
306
  == Screenshots ==
307
 
308
  1. WP User Avatar admin settings.
314
 
315
  == Changelog ==
316
 
317
+ = 1.6.5 =
318
+ * Bug Fix: Use entire comment object instead of just e-mail address
319
+
320
+ = 1.6.4 =
321
+ * Bug Fix: Correct avatar not showing in widget
322
+ * Update: Check compatibility to 3.7.1
323
+
324
+ = 1.6.3 =
325
+ * Bug Fix: Checkbox value for "Crop avatars to exact dimensions"
326
+
327
+ = 1.6.2 =
328
+ * Bug Fix: Show Default Avatar if attachment doesn't exist
329
+ * Bug Fix: manage_users_custom_column not returning values
330
+
331
+ = 1.6.1 =
332
+ * Bug Fix: Profile not saving without an avatar for Contributors & Subscribers
333
+
334
+ = 1.6.0 =
335
+ * Add: Filters to change profile HTML structure
336
+ * Add: Recognition of sizes registered with add_image_size
337
+ * Add: Resize image options for Contributors & Subscribers
338
+ * Bug Fix: Rerrange CSS class names
339
+
340
+ = 1.5.8 =
341
+ * Bug Fix: Add function exists checks to prevent redeclare errors
342
+ * Bug Fix: Page die if file upload is too big
343
+ * Bug Fix: Upload file with submit
344
+
345
+ = 1.5.7 =
346
+ * Bug Fix: Separate out JavaScript for Contributors & Subscribers
347
+ * Bug Fix: Subscriber uploader not finding error type
348
+
349
+ = 1.5.6 =
350
+ * Update: Use cache for wpua_has_gravatar
351
+
352
+ = 1.5.5 =
353
+ * Bug Fix: Hide "Edit Image" button if Contributors & Subscribers can't edit avatar
354
+ * Bug Fix: Remove edit_posts capability if Subscribers can't edit avatar
355
+
356
  = 1.5.4 =
357
+ * Add: Option to enable avatar editing privilege for Contributors & Subscribers
358
  * Add: Swedish translation
359
  * Update: Move inline JavaScript to wp-user-avatar.js and wp-user-avatar-admin.js
360
  * Update: Load JavaScript in footer
386
  * Bug Fix: Use wp_die for errors
387
 
388
  = 1.4 =
389
+ * Add: Uploader for Contributors & Subscribers
390
  * Add: Media states for avatar images
391
  * Add: Plugin admin settings
392
  * Update: Change support only to WP 3.4+
uninstall.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
6
 
7
  // Remove user metadata and options on plugin delete
@@ -26,6 +26,10 @@ if(is_multisite()){
26
  delete_option('wp_user_avatar_disable_gravatar');
27
  delete_option('wp_user_avatar_edit_avatar');
28
  delete_option('wp_user_avatar_load_scripts');
 
 
 
 
29
  delete_option('wp_user_avatar_tinymce');
30
  delete_option('wp_user_avatar_upload_size_limit');
31
  delete_option('wp_user_avatar_default_avatar_updated');
@@ -41,6 +45,10 @@ if(is_multisite()){
41
  delete_option('wp_user_avatar_disable_gravatar');
42
  delete_option('wp_user_avatar_edit_avatar');
43
  delete_option('wp_user_avatar_load_scripts');
 
 
 
 
44
  delete_option('wp_user_avatar_tinymce');
45
  delete_option('wp_user_avatar_upload_size_limit');
46
  delete_option('wp_user_avatar_default_avatar_updated');
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
+ * @version 1.6.5
5
  */
6
 
7
  // Remove user metadata and options on plugin delete
26
  delete_option('wp_user_avatar_disable_gravatar');
27
  delete_option('wp_user_avatar_edit_avatar');
28
  delete_option('wp_user_avatar_load_scripts');
29
+ delete_option('wp_user_avatar_resize_crop');
30
+ delete_option('wp_user_avatar_resize_h');
31
+ delete_option('wp_user_avatar_resize_upload');
32
+ delete_option('wp_user_avatar_resize_w');
33
  delete_option('wp_user_avatar_tinymce');
34
  delete_option('wp_user_avatar_upload_size_limit');
35
  delete_option('wp_user_avatar_default_avatar_updated');
45
  delete_option('wp_user_avatar_disable_gravatar');
46
  delete_option('wp_user_avatar_edit_avatar');
47
  delete_option('wp_user_avatar_load_scripts');
48
+ delete_option('wp_user_avatar_resize_crop');
49
+ delete_option('wp_user_avatar_resize_h');
50
+ delete_option('wp_user_avatar_resize_upload');
51
+ delete_option('wp_user_avatar_resize_w');
52
  delete_option('wp_user_avatar_tinymce');
53
  delete_option('wp_user_avatar_upload_size_limit');
54
  delete_option('wp_user_avatar_default_avatar_updated');
wp-user-avatar.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
6
  /*
7
  Plugin Name: WP User Avatar
@@ -9,7 +9,7 @@ Plugin URI: http://wordpress.org/plugins/wp-user-avatar/
9
  Description: Use any image from your WordPress Media Library as a custom user avatar. Add your own Default Avatar.
10
  Author: Bangbay Siboliban
11
  Author URI: http://siboliban.org/
12
- Version: 1.5.4
13
  Text Domain: wp-user-avatar
14
  Domain Path: /lang/
15
  */
@@ -20,7 +20,7 @@ if(!defined('ABSPATH')){
20
  }
21
 
22
  // Define paths and variables
23
- define('WPUA_VERSION', ' 1.5.4');
24
  define('WPUA_FOLDER', basename(dirname(__FILE__)));
25
  define('WPUA_ABSPATH', trailingslashit(str_replace('\\', '/', WP_PLUGIN_DIR.'/'.WPUA_FOLDER)));
26
  define('WPUA_URLPATH', trailingslashit(plugins_url(WPUA_FOLDER)));
@@ -32,13 +32,16 @@ $wpua_allow_upload = get_option('wp_user_avatar_allow_upload');
32
  $wpua_avatar_default = get_option('avatar_default_wp_user_avatar');
33
  $wpua_disable_gravatar = get_option('wp_user_avatar_disable_gravatar');
34
  $wpua_edit_avatar = get_option('wp_user_avatar_edit_avatar');
 
 
 
 
35
  $wpua_tinymce = get_option('wp_user_avatar_tinymce');
36
  $mustache_original = WPUA_URLPATH.'images/wp-user-avatar.png';
37
  $mustache_medium = WPUA_URLPATH.'images/wp-user-avatar-300x300.png';
38
  $mustache_thumbnail = WPUA_URLPATH.'images/wp-user-avatar-150x150.png';
39
  $mustache_avatar = WPUA_URLPATH.'images/wp-user-avatar-96x96.png';
40
  $mustache_admin = WPUA_URLPATH.'images/wp-user-avatar-32x32.png';
41
- $ssl = is_ssl() ? 's' : "";
42
 
43
  // Check for updates
44
  $wpua_default_avatar_updated = get_option('wp_user_avatar_default_avatar_updated');
@@ -91,6 +94,10 @@ function wpua_options(){
91
  add_option('wp_user_avatar_allow_upload', '0');
92
  add_option('wp_user_avatar_disable_gravatar', '0');
93
  add_option('wp_user_avatar_edit_avatar', '1');
 
 
 
 
94
  add_option('wp_user_avatar_tinymce', '1');
95
  add_option('wp_user_avatar_upload_size_limit', '0');
96
  }
@@ -162,7 +169,7 @@ if((bool) $wpua_allow_upload == 1){
162
  add_action('user_edit_form_tag', 'wpua_add_edit_form_multipart_encoding');
163
 
164
  // Check user role
165
- function check_user_role($role, $user_id=null){
166
  global $current_user;
167
  $user = is_numeric($user_id) ? get_userdata($user_id) : $current_user->ID;
168
  if(empty($user)){
@@ -174,7 +181,7 @@ if((bool) $wpua_allow_upload == 1){
174
  // Remove menu items
175
  function wpua_subscriber_remove_menu_pages(){
176
  global $current_user;
177
- if(check_user_role('subscriber', $current_user->ID)){
178
  remove_menu_page('edit.php');
179
  remove_menu_page('edit-comments.php');
180
  remove_menu_page('tools.php');
@@ -185,7 +192,7 @@ if((bool) $wpua_allow_upload == 1){
185
  // Remove menu bar items
186
  function wpua_subscriber_remove_menu_bar_items(){
187
  global $current_user, $wp_admin_bar;
188
- if(check_user_role('subscriber', $current_user->ID)){
189
  $wp_admin_bar->remove_menu('comments');
190
  $wp_admin_bar->remove_menu('new-content');
191
  }
@@ -195,7 +202,7 @@ if((bool) $wpua_allow_upload == 1){
195
  // Remove dashboard items
196
  function wpua_subscriber_remove_dashboard_widgets(){
197
  global $current_user;
198
- if(check_user_role('subscriber', $current_user->ID)){
199
  remove_meta_box('dashboard_quick_press', 'dashboard', 'side');
200
  remove_meta_box('dashboard_recent_drafts', 'dashboard', 'side');
201
  remove_meta_box('dashboard_right_now', 'dashboard', 'normal');
@@ -211,7 +218,7 @@ if((bool) $wpua_allow_upload == 1){
211
  } else {
212
  $offlimits = array('edit.php', 'edit-comments.php', 'post.php', 'post-new.php', 'tools.php');
213
  }
214
- if(check_user_role('subscriber', $current_user->ID)){
215
  if(in_array($pagenow, $offlimits)){
216
  do_action('admin_page_access_denied');
217
  wp_die(__('You do not have sufficient permissions to access this page.'));
@@ -250,11 +257,61 @@ function wpua_deactivate(){
250
  update_option('avatar_default', 'mystery');
251
  }
252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  // WP User Avatar
254
  if(!class_exists('wp_user_avatar')){
255
  class wp_user_avatar{
256
  function wp_user_avatar(){
257
- global $current_screen, $current_user, $pagenow, $show_avatars, $wpua_allow_upload, $wpua_upload_size_limit;
258
  // Add WPUA to profile
259
  if(current_user_can('upload_files') || ((bool) $wpua_allow_upload == 1 && is_user_logged_in())){
260
  // For themes that use this function
@@ -274,7 +331,10 @@ if(!class_exists('wp_user_avatar')){
274
  }
275
  // Prefilter upload size
276
  if(!current_user_can('upload_files')){
277
- add_filter('wp_handle_upload_prefilter', array($this, 'wpua_handle_upload_prefilter'), 10, 1);
 
 
 
278
  }
279
  // Admin menu settings
280
  add_action('admin_menu', 'wpua_admin');
@@ -284,9 +344,11 @@ if(!class_exists('wp_user_avatar')){
284
  add_filter('manage_users_columns', array($this, 'wpua_add_column'), 10, 1);
285
  add_filter('manage_users_custom_column', array($this, 'wpua_show_column'), 10, 3);
286
  }
 
 
 
287
  }
288
  }
289
-
290
  // Add to edit user profile
291
  function wpua_action_show_user_profile($user){
292
  global $blog_id, $current_user, $post, $show_avatars, $wpdb, $wpua_allow_upload, $wpua_edit_avatar, $wpua_upload_size_limit_with_units;
@@ -303,31 +365,22 @@ if(!class_exists('wp_user_avatar')){
303
  // Change text on message based on current user
304
  $profile = ($current_user->ID == $user->ID) ? '&ldquo;'.__('Update Profile').'&rdquo;' : '&ldquo;'.__('Update User').'&rdquo;';
305
  ?>
306
- <?php if(class_exists('bbPress') && bbp_is_edit()) : // Add to bbPress profile with same style ?>
307
- <h2 class="entry-title"><?php _e('Avatar'); ?></h2>
308
- <fieldset class="bbp-form">
309
- <legend><?php _e('Image'); ?></legend>
310
- <?php else : // Add to profile with admin style ?>
311
- <h3><?php _e('Avatar') ?></h3>
312
- <table class="form-table">
313
- <tr>
314
- <th><label for="wp_user_avatar"><?php _e('Image'); ?></label></th>
315
- <td>
316
- <?php endif; ?>
317
  <input type="hidden" name="wp-user-avatar" id="wp-user-avatar" value="<?php echo $wpua; ?>" />
318
  <?php if(current_user_can('upload_files')) : // Button to launch Media uploader ?>
319
- <p><button type="button" class="button" id="wpua-add" name="wpua-add"><?php _e('Edit Image'); ?></button></p>
320
  <?php elseif(!current_user_can('upload_files') && !has_wp_user_avatar($current_user->ID)) : // Upload button ?>
321
- <input name="wp-user-avatar-file" id="wpua-file" type="file" />
322
- <button type="submit" class="button" id="upload-wp-user-avatar" name="upload-wp-user-avatar" value="<?php _e('Upload'); ?>"><?php _e('Upload'); ?></button>
323
- <p>
324
- <?php printf(__('Maximum upload file size: %d%s.'), esc_html($wpua_upload_size_limit_with_units), esc_html('KB')); ?>
325
- <br />
326
- <?php _e('Allowed Files'); ?>: <?php _e('<code>jpg jpeg png gif</code>'); ?>
 
327
  </p>
328
  <?php elseif((bool) $wpua_edit_avatar == 1 && !current_user_can('upload_files') && has_wp_user_avatar($current_user->ID) && wpua_author($wpua, $current_user->ID)) : // Edit button ?>
329
  <?php $edit_attachment_link = add_query_arg(array('post' => $wpua, 'action' => 'edit'), admin_url('post.php')); ?>
330
- <p><button type="button" class="button" id="wpua-edit" name="wpua-edit" onclick="window.open('<?php echo $edit_attachment_link; ?>', '_self');"><?php _e('Edit Image'); ?></button></p>
331
  <?php endif; ?>
332
  <p id="wpua-preview">
333
  <img src="<?php echo $avatar_medium; ?>" alt="" />
@@ -337,15 +390,9 @@ if(!class_exists('wp_user_avatar')){
337
  <img src="<?php echo $avatar_thumbnail; ?>" alt="" />
338
  <?php _e('Thumbnail'); ?>
339
  </p>
340
- <p><button type="button" class="button<?php echo $hide_remove; ?>" id="wpua-remove" name="wpua-remove"><?php _e('Remove'); ?></button></p>
341
  <p id="wpua-message"><?php printf(__('Click %s to save your changes', 'wp-user-avatar'), $profile); ?></p>
342
- <?php if(class_exists('bbPress') && bbp_is_edit()) : // Add to bbPress profile with same style ?>
343
- </fieldset>
344
- <?php else : // Add to profile with admin style ?>
345
- </td>
346
- </tr>
347
- </table>
348
- <?php endif; ?>
349
  <?php
350
  }
351
 
@@ -354,7 +401,25 @@ if(!class_exists('wp_user_avatar')){
354
  global $wpua_upload_size_limit;
355
  $size = $file['size'];
356
  if($size > $wpua_upload_size_limit){
357
- $file['error'] = __('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  }
359
  return $file;
360
  }
@@ -369,6 +434,7 @@ if(!class_exists('wp_user_avatar')){
369
  add_post_meta($wpua_id, '_wp_attachment_wp_user_avatar', $user_id);
370
  update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', $wpua_id);
371
  } else {
 
372
  if(isset($_POST['wp-user-avatar']) && empty($_POST['wp-user-avatar'])){
373
  // Uploads by user
374
  $attachments = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->posts WHERE post_author = %d AND post_type = %s", $user_id, 'attachment'));
@@ -381,53 +447,54 @@ if(!class_exists('wp_user_avatar')){
381
  update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', "");
382
  }
383
  // Create attachment from upload
384
- if(isset($_POST['upload-wp-user-avatar']) && $_POST['upload-wp-user-avatar']){
385
  if(!function_exists('wp_handle_upload')){
386
- require_once(ABSPATH.'wp-admin/includes/admin.php');
387
  require_once(ABSPATH.'wp-admin/includes/file.php');
388
  }
389
- $name = $_FILES['wp-user-avatar-file']['name'];
390
- $file = wp_handle_upload($_FILES['wp-user-avatar-file'], array('test_form' => false));
391
- $type = $file['type'];
392
- // Allow only JPG, GIF, PNG
393
- if($file['error'] || !preg_match('/(jpe?g|gif|png)$/i', $type)){
394
- if($file['error']){
395
- wp_die($file['error']);
396
- } else {
397
- wp_die(__('Sorry, this file type is not permitted for security reasons.'));
398
- }
399
  }
400
- // Break out file info
401
- $name_parts = pathinfo($name);
402
- $name = trim(substr($name, 0, -(1 + strlen($name_parts['extension']))));
403
- $url = $file['url'];
404
- $file = $file['file'];
405
- $title = $name;
406
- // Use image exif/iptc data for title if possible
407
- if($image_meta = @wp_read_image_metadata($file)){
408
- if(trim($image_meta['title']) && !is_numeric(sanitize_title($image_meta['title']))){
409
- $title = $image_meta['title'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  }
411
  }
412
- // Construct the attachment array
413
- $attachment = array(
414
- 'guid' => $url,
415
- 'post_mime_type' => $type,
416
- 'post_title' => $title
417
- );
418
- // This should never be set as it would then overwrite an existing attachment
419
- if(isset($attachment['ID'])){
420
- unset($attachment['ID']);
421
- }
422
- // Save the attachment metadata
423
- $attachment_id = wp_insert_attachment($attachment, $file);
424
- if(!is_wp_error($attachment_id)){
425
- require_once(ABSPATH.'wp-admin/includes/image.php');
426
- wp_update_attachment_metadata($attachment_id, wp_generate_attachment_metadata($attachment_id, $file));
427
- $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->postmeta WHERE meta_key = %s AND meta_value = %d", '_wp_attachment_wp_user_avatar', $user_id));
428
- add_post_meta($attachment_id, '_wp_attachment_wp_user_avatar', $user_id);
429
- update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', $attachment_id);
430
- }
431
  }
432
  }
433
  }
@@ -463,9 +530,8 @@ if(!class_exists('wp_user_avatar')){
463
  global $blog_id, $wpdb;
464
  $wpua = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
465
  $wpua_image = wp_get_attachment_image($wpua, array(32,32));
466
- if($column_name == 'wp-user-avatar'){
467
- return $wpua_image;
468
- }
469
  }
470
 
471
  // Media uploader
@@ -475,8 +541,10 @@ if(!class_exists('wp_user_avatar')){
475
  if(current_user_can('upload_files')){
476
  wp_enqueue_script('admin-bar');
477
  wp_enqueue_media();
 
 
 
478
  }
479
- wp_enqueue_script('wp-user-avatar', WPUA_URLPATH.'js/wp-user-avatar.js', array('jquery'), WPUA_VERSION, true);
480
  wp_enqueue_style('wp-user-avatar', WPUA_URLPATH.'css/wp-user-avatar.css', "", WPUA_VERSION);
481
  // Admin scripts
482
  if($pagenow == 'options-discussion.php' || ($pagenow == 'options-general.php' && isset($_GET['page']) && $_GET['page'] == 'wp-user-avatar')){
@@ -501,7 +569,6 @@ if(!class_exists('wp_user_avatar')){
501
 
502
  // Returns true if user has Gravatar-hosted image
503
  function wpua_has_gravatar($id_or_email, $has_gravatar=false, $user="", $email=""){
504
- global $ssl;
505
  if(!is_object($id_or_email) && !empty($id_or_email)){
506
  // Find user by ID or e-mail address
507
  $user = is_numeric($id_or_email) ? get_user_by('id', $id_or_email) : get_user_by('email', $id_or_email);
@@ -509,12 +576,15 @@ if(!class_exists('wp_user_avatar')){
509
  $email = !empty($user) ? $user->user_email : "";
510
  }
511
  // Check if Gravatar image returns 200 (OK) or 404 (Not Found)
512
- if(!empty($email)){
513
- $hash = md5(strtolower(trim($email)));
514
- $gravatar = 'http'.$ssl.'://www.gravatar.com/avatar/'.$hash.'?d=404';
515
- $headers = @get_headers($gravatar);
516
- $has_gravatar = !preg_match("|200|", $headers[0]) ? false : true;
 
 
517
  }
 
518
  return $has_gravatar;
519
  }
520
 
@@ -528,17 +598,17 @@ if(!class_exists('wp_user_avatar')){
528
  $user_id = !empty($user) ? $user->ID : "";
529
  }
530
  $wpua = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
531
- $has_wpua = !empty($wpua) ? true : false;
532
  return $has_wpua;
533
  }
534
 
535
  // Replace get_avatar only in get_wp_user_avatar
536
  function wpua_get_avatar_filter($avatar, $id_or_email="", $size="", $default="", $alt=""){
537
- global $avatar_default, $comment, $mustache_admin, $mustache_avatar, $mustache_medium, $mustache_original, $mustache_thumbnail, $post, $wpua_avatar_default, $wpua_disable_gravatar;
538
  // User has WPUA
539
  if(is_object($id_or_email)){
540
- if(!empty($comment->comment_author_email)){
541
- $avatar = get_wp_user_avatar($comment, $size, $default, $alt);
542
  } else {
543
  $avatar = get_wp_user_avatar('unknown@gravatar.com', $size, $default, $alt);
544
  }
@@ -551,14 +621,13 @@ if(!class_exists('wp_user_avatar')){
551
  // User doesn't have WPUA or Gravatar and Default Avatar is wp_user_avatar, show custom Default Avatar
552
  } elseif($avatar_default == 'wp_user_avatar'){
553
  // Show custom Default Avatar
554
- if(!empty($wpua_avatar_default)){
555
  // Get image
556
  $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
557
  // Image src
558
  $default = $wpua_avatar_default_image[0];
559
  // Add dimensions if numeric size
560
  $dimensions = ' width="'.$wpua_avatar_default_image[1].'" height="'.$wpua_avatar_default_image[2].'"';
561
- $defaultcss = "";
562
  } else {
563
  // Get mustache image based on numeric size comparison
564
  if($size > get_option('medium_size_w')){
@@ -574,10 +643,9 @@ if(!class_exists('wp_user_avatar')){
574
  }
575
  // Add dimensions if numeric size
576
  $dimensions = ' width="'.$size.'" height="'.$size.'"';
577
- $defaultcss = ' avatar-default';
578
  }
579
  // Construct the img tag
580
- $avatar = "<img src='".$default."'".$dimensions." alt='".$alt."' class='wp-user-avatar wp-user-avatar-".$size." avatar avatar-".$size." photo'".$defaultcss." />";
581
  }
582
  }
583
  return $avatar;
@@ -595,7 +663,7 @@ if(!class_exists('wp_user_avatar')){
595
  // User doesn't have Gravatar and Default Avatar is wp_user_avatar, show custom Default Avatar
596
  if(!wpua_has_gravatar($id_or_email) && $avatar_default == 'wp_user_avatar'){
597
  // Show custom Default Avatar
598
- if(!empty($wpua_avatar_default)){
599
  $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
600
  $default = $wpua_avatar_default_image[0];
601
  } else {
@@ -606,10 +674,10 @@ if(!class_exists('wp_user_avatar')){
606
  $wpua_image = get_avatar($id_or_email, $size);
607
  // Takes the img tag, extracts the src
608
  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $wpua_image, $matches, PREG_SET_ORDER);
609
- $default = $matches [0] [1];
610
  }
611
  } else {
612
- if(!empty($wpua_avatar_default)){
613
  $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
614
  $default = $wpua_avatar_default_image[0];
615
  } else {
@@ -620,21 +688,21 @@ if(!class_exists('wp_user_avatar')){
620
  }
621
 
622
  // Find WPUA, show get_avatar if empty
623
- function get_wp_user_avatar($id_or_email="", $size='96', $align="", $alt=""){
624
- global $avatar_default, $blog_id, $comment, $post, $wpdb;
625
  // Checks if comment
626
  if(is_object($id_or_email)){
627
  // Checks if comment author is registered user by user ID
628
- if($comment->user_id != 0){
629
- $id_or_email = $comment->user_id;
630
  // Checks that comment author isn't anonymous
631
- } elseif(!empty($comment->comment_author_email)){
632
  // Checks if comment author is registered user by e-mail address
633
- $user = get_user_by('email', $comment->comment_author_email);
634
  // Get registered user info from profile, otherwise e-mail address should be value
635
- $id_or_email = !empty($user) ? $user->ID : $comment->comment_author_email;
636
  }
637
- $alt = $comment->comment_author;
638
  } else {
639
  if(!empty($id_or_email)){
640
  // Find user by ID or e-mail address
@@ -653,14 +721,14 @@ if(!class_exists('wp_user_avatar')){
653
  }
654
  // Set user's ID and name
655
  if(!empty($user)){
656
- $id_or_email = $user->ID;
657
  $alt = $user->display_name;
658
  }
659
  }
660
  // Checks if user has WPUA
661
- $wpua_meta = !empty($id_or_email) ? get_the_author_meta($wpdb->get_blog_prefix($blog_id).'user_avatar', $id_or_email) : "";
662
  // Add alignment class
663
- $alignclass = !empty($align) ? ' align'.$align : "";
664
  // User has WPUA, bypass get_avatar
665
  if(!empty($wpua_meta)){
666
  // Numeric size use size array
@@ -670,24 +738,34 @@ if(!class_exists('wp_user_avatar')){
670
  // Add dimensions to img only if numeric size was specified
671
  $dimensions = is_numeric($size) ? ' width="'.$wpua_image[1].'" height="'.$wpua_image[2].'"' : "";
672
  // Construct the img tag
673
- $avatar = '<img src="'.$wpua_image[0].'"'.$dimensions.' alt="'.$alt.'" class="wp-user-avatar wp-user-avatar-'.$size.$alignclass.' avatar avatar avatar-'.$size.' photo" />';
674
  } else {
675
  // Get numeric sizes for non-numeric sizes based on media options
676
- if($size == 'original' || $size == 'large' || $size == 'medium' || $size == 'thumbnail'){
677
- $get_size = ($size == 'original') ? get_option('large_size_w') : get_option($size.'_size_w');
 
 
 
 
 
 
 
 
 
678
  } else {
679
  // Numeric sizes leave as-is
680
  $get_size = $size;
681
  }
682
  // User with no WPUA uses get_avatar
683
- $avatar = get_avatar($id_or_email, $get_size, $default="", $alt="");
684
  // Remove width and height for non-numeric sizes
685
- if(!is_numeric($size)){
686
- $avatar = preg_replace("/(width|height)=\'\d*\'\s/", "", $avatar);
687
  $avatar = preg_replace('/(width|height)=\"\d*\"\s/', "", $avatar);
688
- $avatar = str_replace('wp-user-avatar wp-user-avatar-'.$get_size.' ', "", $avatar);
689
- $avatar = str_replace("class='", "class='wp-user-avatar wp-user-avatar-".$size.$alignclass." ", $avatar);
690
  }
 
 
 
691
  }
692
  return $avatar;
693
  }
@@ -700,7 +778,7 @@ if(!class_exists('wp_user_avatar')){
700
  // Takes the img tag, extracts the src
701
  if(!empty($wpua_image)){
702
  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $wpua_image, $matches, PREG_SET_ORDER);
703
- $wpua_image_src = $matches [0] [1];
704
  }
705
  return $wpua_image_src;
706
  }
@@ -717,7 +795,7 @@ if(!class_exists('wp_user_avatar')){
717
  $user = empty($user) ? get_user_by('email', $user) : $user;
718
  }
719
  // Get user ID
720
- $id_or_email = !empty($user) ? $user->ID : "";
721
  // Check if link is set
722
  if(!empty($link)){
723
  // CSS class is same as link type, except for URL
@@ -776,13 +854,13 @@ if(!class_exists('wp_user_avatar')){
776
  $avatar_list .= '<br />';
777
  }
778
  // Show remove link if custom Default Avatar is set
779
- if(!empty($wpua_avatar_default)){
780
  $avatar_thumb_src = wp_get_attachment_image_src($wpua_avatar_default, array(32,32));
781
  $avatar_thumb = $avatar_thumb_src[0];
782
  $hide_remove = "";
783
  } else {
784
  $avatar_thumb = $mustache_admin;
785
- $hide_remove = ' class="wpua-hide"';
786
  }
787
  // Default Avatar is wp_user_avatar, check the radio button next to it
788
  $selected_avatar = ((bool) $wpua_disable_gravatar == 1 || $avatar_default == 'wp_user_avatar') ? ' checked="checked" ' : "";
@@ -846,12 +924,13 @@ if(!class_exists('wp_user_avatar')){
846
 
847
  // Admin page
848
  function wpua_options_page(){
849
- global $show_avatars, $upload_size_limit_with_units, $wpua_allow_upload, $wpua_disable_gravatar, $wpua_edit_avatar, $wpua_tinymce, $wpua_upload_size_limit, $wpua_upload_size_limit_with_units;
850
  // Give subscribers edit_posts capability
851
  if(isset($_GET['settings-updated']) && $_GET['settings-updated'] == 'true' && (empty($wpua_allow_upload) || empty($wpua_edit_avatar))){
852
  wpua_subscriber_remove_cap();
853
  }
854
- $hide_size = (bool) $wpua_allow_upload != 1 ? ' class="wpua-hide"' : "";
 
855
  ?>
856
  <div class="wrap">
857
  <?php screen_icon(); ?>
@@ -869,12 +948,14 @@ if(!class_exists('wp_user_avatar')){
869
  <input name="wp_user_avatar_tinymce" type="checkbox" id="wp_user_avatar_tinymce" value="1" <?php checked($wpua_tinymce, 1); ?> />
870
  <?php _e('Add avatar button to Visual Editor', 'wp-user-avatar'); ?>
871
  </label>
872
- <br />
 
873
  <label for="wp_user_avatar_allow_upload">
874
  <input name="wp_user_avatar_allow_upload" type="checkbox" id="wp_user_avatar_allow_upload" value="1" <?php checked($wpua_allow_upload, 1); ?> />
875
  <?php _e('Allow Contributors & Subscribers to upload avatars', 'wp-user-avatar'); ?>
876
  </label>
877
- <br />
 
878
  <label for="wp_user_avatar_disable_gravatar">
879
  <input name="wp_user_avatar_disable_gravatar" type="checkbox" id="wp_user_avatar_disable_gravatar" value="1" <?php checked($wpua_disable_gravatar, 1); ?> />
880
  <?php _e('Disable Gravatar and use only local avatars', 'wp-user-avatar'); ?>
@@ -882,29 +963,51 @@ if(!class_exists('wp_user_avatar')){
882
  </fieldset>
883
  </td>
884
  </tr>
885
- <tr id="wpua-size-limit" valign="top"<?php echo $hide_size; ?>>
886
- <th scope="row">
887
- <label for="wp_user_avatar_upload_size_limit">
888
- <?php _e('Upload Size Limit (only for Contributors & Subscribers)', 'wp-user-avatar'); ?>
889
- </label>
890
- </th>
891
- <td>
892
- <fieldset>
893
- <legend class="screen-reader-text"><span><?php _e('Upload Size Limit (only for Contributors & Subscribers)', 'wp-user-avatar'); ?></span></legend>
894
- <input name="wp_user_avatar_upload_size_limit" type="text" id="wp_user_avatar_upload_size_limit" value="<?php echo $wpua_upload_size_limit; ?>" class="regular-text" />
895
- <span id="wpua-readable-size"><?php echo $wpua_upload_size_limit_with_units; ?></span>
896
- <span id="wpua-readable-size-error"><?php printf(__('%s exceeds the maximum upload size for this site.'), ""); ?></span>
897
- <div id="wpua-slider"></div>
898
- <span class="description"><?php printf(__('Maximum upload file size: %d%s.'), esc_html(wp_max_upload_size()), esc_html(' bytes ('.$upload_size_limit_with_units.')')); ?></span>
899
- <br />
900
- <label for="wp_user_avatar_edit_avatar">
901
- <input name="wp_user_avatar_edit_avatar" type="checkbox" id="wp_user_avatar_edit_avatar" value="1" <?php checked($wpua_edit_avatar, 1); ?> />
902
- <?php _e('Allow users to edit avatars', 'wp-user-avatar'); ?>
903
- </label>
904
- </fieldset>
905
- </td>
906
- </tr>
907
  </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
908
  <h3 class="title"><?php _e('Avatars'); ?></h3>
909
  <p><?php _e('An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site.'); ?></p>
910
  <table class="form-table">
@@ -967,6 +1070,10 @@ if(!class_exists('wp_user_avatar')){
967
  register_setting('wpua-settings-group', 'wp_user_avatar_allow_upload', 'intval');
968
  register_setting('wpua-settings-group', 'wp_user_avatar_disable_gravatar', 'intval');
969
  register_setting('wpua-settings-group', 'wp_user_avatar_edit_avatar', 'intval');
 
 
 
 
970
  register_setting('wpua-settings-group', 'wp_user_avatar_upload_size_limit', 'intval');
971
  }
972
 
@@ -983,4 +1090,5 @@ if(!class_exists('wp_user_avatar')){
983
  }
984
  add_action('plugins_loaded', 'wpua_load');
985
  }
 
986
  ?>
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
+ * @version 1.6.5
5
  */
6
  /*
7
  Plugin Name: WP User Avatar
9
  Description: Use any image from your WordPress Media Library as a custom user avatar. Add your own Default Avatar.
10
  Author: Bangbay Siboliban
11
  Author URI: http://siboliban.org/
12
+ Version: 1.6.5
13
  Text Domain: wp-user-avatar
14
  Domain Path: /lang/
15
  */
20
  }
21
 
22
  // Define paths and variables
23
+ define('WPUA_VERSION', ' 1.6.5');
24
  define('WPUA_FOLDER', basename(dirname(__FILE__)));
25
  define('WPUA_ABSPATH', trailingslashit(str_replace('\\', '/', WP_PLUGIN_DIR.'/'.WPUA_FOLDER)));
26
  define('WPUA_URLPATH', trailingslashit(plugins_url(WPUA_FOLDER)));
32
  $wpua_avatar_default = get_option('avatar_default_wp_user_avatar');
33
  $wpua_disable_gravatar = get_option('wp_user_avatar_disable_gravatar');
34
  $wpua_edit_avatar = get_option('wp_user_avatar_edit_avatar');
35
+ $wpua_resize_crop = get_option('wp_user_avatar_resize_crop');
36
+ $wpua_resize_h = get_option('wp_user_avatar_resize_h');
37
+ $wpua_resize_upload = get_option('wp_user_avatar_resize_upload');
38
+ $wpua_resize_w = get_option('wp_user_avatar_resize_w');
39
  $wpua_tinymce = get_option('wp_user_avatar_tinymce');
40
  $mustache_original = WPUA_URLPATH.'images/wp-user-avatar.png';
41
  $mustache_medium = WPUA_URLPATH.'images/wp-user-avatar-300x300.png';
42
  $mustache_thumbnail = WPUA_URLPATH.'images/wp-user-avatar-150x150.png';
43
  $mustache_avatar = WPUA_URLPATH.'images/wp-user-avatar-96x96.png';
44
  $mustache_admin = WPUA_URLPATH.'images/wp-user-avatar-32x32.png';
 
45
 
46
  // Check for updates
47
  $wpua_default_avatar_updated = get_option('wp_user_avatar_default_avatar_updated');
94
  add_option('wp_user_avatar_allow_upload', '0');
95
  add_option('wp_user_avatar_disable_gravatar', '0');
96
  add_option('wp_user_avatar_edit_avatar', '1');
97
+ add_option('wp_user_avatar_resize_crop', '0');
98
+ add_option('wp_user_avatar_resize_h', '96');
99
+ add_option('wp_user_avatar_resize_upload', '0');
100
+ add_option('wp_user_avatar_resize_w', '96');
101
  add_option('wp_user_avatar_tinymce', '1');
102
  add_option('wp_user_avatar_upload_size_limit', '0');
103
  }
169
  add_action('user_edit_form_tag', 'wpua_add_edit_form_multipart_encoding');
170
 
171
  // Check user role
172
+ function wpua_check_user_role($role, $user_id=null){
173
  global $current_user;
174
  $user = is_numeric($user_id) ? get_userdata($user_id) : $current_user->ID;
175
  if(empty($user)){
181
  // Remove menu items
182
  function wpua_subscriber_remove_menu_pages(){
183
  global $current_user;
184
+ if(wpua_check_user_role('subscriber', $current_user->ID)){
185
  remove_menu_page('edit.php');
186
  remove_menu_page('edit-comments.php');
187
  remove_menu_page('tools.php');
192
  // Remove menu bar items
193
  function wpua_subscriber_remove_menu_bar_items(){
194
  global $current_user, $wp_admin_bar;
195
+ if(wpua_check_user_role('subscriber', $current_user->ID)){
196
  $wp_admin_bar->remove_menu('comments');
197
  $wp_admin_bar->remove_menu('new-content');
198
  }
202
  // Remove dashboard items
203
  function wpua_subscriber_remove_dashboard_widgets(){
204
  global $current_user;
205
+ if(wpua_check_user_role('subscriber', $current_user->ID)){
206
  remove_meta_box('dashboard_quick_press', 'dashboard', 'side');
207
  remove_meta_box('dashboard_recent_drafts', 'dashboard', 'side');
208
  remove_meta_box('dashboard_right_now', 'dashboard', 'normal');
218
  } else {
219
  $offlimits = array('edit.php', 'edit-comments.php', 'post.php', 'post-new.php', 'tools.php');
220
  }
221
+ if(wpua_check_user_role('subscriber', $current_user->ID)){
222
  if(in_array($pagenow, $offlimits)){
223
  do_action('admin_page_access_denied');
224
  wp_die(__('You do not have sufficient permissions to access this page.'));
257
  update_option('avatar_default', 'mystery');
258
  }
259
 
260
+ // Before wrapper for profile
261
+ function wpua_before_avatar(){
262
+ do_action('wpua_before_avatar');
263
+ }
264
+
265
+ // After wrapper for profile
266
+ function wpua_after_avatar(){
267
+ do_action('wpua_after_avatar');
268
+ }
269
+
270
+ // Before avatar container
271
+ function wpua_do_before_avatar(){ ?>
272
+ <?php if(class_exists('bbPress') && bbp_is_edit()) : // Add to bbPress profile with same style ?>
273
+ <h2 class="entry-title"><?php _e('Avatar'); ?></h2>
274
+ <fieldset class="bbp-form">
275
+ <legend><?php _e('Image'); ?></legend>
276
+ <?php elseif(class_exists('WPUF_Main') && is_page()) : // Add to WP User Frontend profile with same style ?>
277
+ <fieldset>
278
+ <legend><?php _e('Avatar') ?></legend>
279
+ <table class="wpuf-table">
280
+ <tr>
281
+ <th><label for="wp_user_avatar"><?php _e('Image'); ?></label></th>
282
+ <td>
283
+ <?php else : // Add to profile with admin style ?>
284
+ <h3><?php _e('Avatar') ?></h3>
285
+ <table class="form-table">
286
+ <tr>
287
+ <th><label for="wp_user_avatar"><?php _e('Image'); ?></label></th>
288
+ <td>
289
+ <?php endif; ?>
290
+ <?php
291
+ }
292
+
293
+ // After avatar container
294
+ function wpua_do_after_avatar(){ ?>
295
+ <?php if(class_exists('bbPress') && bbp_is_edit()) : // Add to bbPress profile with same style ?>
296
+ </fieldset>
297
+ <?php elseif(class_exists('WPUF_Main') && is_page()) : // Add to WP User Frontend profile with same style ?>
298
+ </td>
299
+ </tr>
300
+ </table>
301
+ </fieldset>
302
+ <?php else : // Add to profile with admin style ?>
303
+ </td>
304
+ </tr>
305
+ </table>
306
+ <?php endif; ?>
307
+ <?php
308
+ }
309
+
310
  // WP User Avatar
311
  if(!class_exists('wp_user_avatar')){
312
  class wp_user_avatar{
313
  function wp_user_avatar(){
314
+ global $current_screen, $current_user, $pagenow, $show_avatars, $wpua_allow_upload, $wpua_resize_upload, $wpua_upload_size_limit;
315
  // Add WPUA to profile
316
  if(current_user_can('upload_files') || ((bool) $wpua_allow_upload == 1 && is_user_logged_in())){
317
  // For themes that use this function
331
  }
332
  // Prefilter upload size
333
  if(!current_user_can('upload_files')){
334
+ add_filter('wp_handle_upload_prefilter', array($this, 'wpua_handle_upload_prefilter'));
335
+ if((bool) $wpua_resize_upload == 1){
336
+ add_filter('wp_handle_upload', array($this, 'wpua_resize_upload'));
337
+ }
338
  }
339
  // Admin menu settings
340
  add_action('admin_menu', 'wpua_admin');
344
  add_filter('manage_users_columns', array($this, 'wpua_add_column'), 10, 1);
345
  add_filter('manage_users_custom_column', array($this, 'wpua_show_column'), 10, 3);
346
  }
347
+ // Profile wrappers
348
+ add_action('wpua_before_avatar', 'wpua_do_before_avatar');
349
+ add_action('wpua_after_avatar', 'wpua_do_after_avatar');
350
  }
351
  }
 
352
  // Add to edit user profile
353
  function wpua_action_show_user_profile($user){
354
  global $blog_id, $current_user, $post, $show_avatars, $wpdb, $wpua_allow_upload, $wpua_edit_avatar, $wpua_upload_size_limit_with_units;
365
  // Change text on message based on current user
366
  $profile = ($current_user->ID == $user->ID) ? '&ldquo;'.__('Update Profile').'&rdquo;' : '&ldquo;'.__('Update User').'&rdquo;';
367
  ?>
368
+ <?php do_action('wpua_before_avatar'); ?>
 
 
 
 
 
 
 
 
 
 
369
  <input type="hidden" name="wp-user-avatar" id="wp-user-avatar" value="<?php echo $wpua; ?>" />
370
  <?php if(current_user_can('upload_files')) : // Button to launch Media uploader ?>
371
+ <p id="wpua-add-button"><button type="button" class="button" id="wpua-add" name="wpua-add"><?php _e('Edit Image'); ?></button></p>
372
  <?php elseif(!current_user_can('upload_files') && !has_wp_user_avatar($current_user->ID)) : // Upload button ?>
373
+ <p id="wpua-upload-button">
374
+ <input name="wpua-file" id="wpua-file" type="file" />
375
+ <button type="submit" class="button" id="wpua-upload" name="submit" value="<?php _e('Upload'); ?>"><?php _e('Upload'); ?></button>
376
+ </p>
377
+ <p id="wpua-upload-messages">
378
+ <span id="wpua-max-upload"><?php printf(__('Maximum upload file size: %d%s.'), esc_html($wpua_upload_size_limit_with_units), esc_html('KB')); ?></span>
379
+ <span id="wpua-allowed-files"><?php _e('Allowed Files'); ?>: <?php _e('<code>jpg jpeg png gif</code>'); ?></span>
380
  </p>
381
  <?php elseif((bool) $wpua_edit_avatar == 1 && !current_user_can('upload_files') && has_wp_user_avatar($current_user->ID) && wpua_author($wpua, $current_user->ID)) : // Edit button ?>
382
  <?php $edit_attachment_link = add_query_arg(array('post' => $wpua, 'action' => 'edit'), admin_url('post.php')); ?>
383
+ <p id="wpua-edit-button"><button type="button" class="button" id="wpua-edit" name="wpua-edit" onclick="window.open('<?php echo $edit_attachment_link; ?>', '_self');"><?php _e('Edit Image'); ?></button></p>
384
  <?php endif; ?>
385
  <p id="wpua-preview">
386
  <img src="<?php echo $avatar_medium; ?>" alt="" />
390
  <img src="<?php echo $avatar_thumbnail; ?>" alt="" />
391
  <?php _e('Thumbnail'); ?>
392
  </p>
393
+ <p id="wpua-remove-button"><button type="button" class="button<?php echo $hide_remove; ?>" id="wpua-remove" name="wpua-remove"><?php _e('Remove'); ?></button></p>
394
  <p id="wpua-message"><?php printf(__('Click %s to save your changes', 'wp-user-avatar'), $profile); ?></p>
395
+ <?php do_action('wpua_after_avatar'); ?>
 
 
 
 
 
 
396
  <?php
397
  }
398
 
401
  global $wpua_upload_size_limit;
402
  $size = $file['size'];
403
  if($size > $wpua_upload_size_limit){
404
+ wp_die(__('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.'));
405
+ }
406
+ return $file;
407
+ }
408
+
409
+ // Resize uploaded image
410
+ function wpua_resize_upload($file){
411
+ global $wpua_resize_h, $wpua_resize_w, $wpua_resize_crop;
412
+ // Only for JPG, GIF, PNG
413
+ if(preg_match('/(jpe?g|gif|png)$/i', $file['type'])){
414
+ // Original image
415
+ $uploaded_image = wp_get_image_editor($file['file']);
416
+ // Check for errors
417
+ if(!is_wp_error($uploaded_image)){
418
+ // Resize image
419
+ $uploaded_image->resize($wpua_resize_w, $wpua_resize_h, $wpua_resize_crop);
420
+ // Save image
421
+ $resized_image = $uploaded_image->save($file['file']);
422
+ }
423
  }
424
  return $file;
425
  }
434
  add_post_meta($wpua_id, '_wp_attachment_wp_user_avatar', $user_id);
435
  update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', $wpua_id);
436
  } else {
437
+ // Remove attachment info if avatar is blank
438
  if(isset($_POST['wp-user-avatar']) && empty($_POST['wp-user-avatar'])){
439
  // Uploads by user
440
  $attachments = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->posts WHERE post_author = %d AND post_type = %s", $user_id, 'attachment'));
447
  update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', "");
448
  }
449
  // Create attachment from upload
450
+ if(isset($_POST['submit']) && $_POST['submit'] && !empty($_FILES['wpua-file'])){
451
  if(!function_exists('wp_handle_upload')){
 
452
  require_once(ABSPATH.'wp-admin/includes/file.php');
453
  }
454
+ if(!function_exists('wp_generate_attachment_metadata')){
455
+ require_once(ABSPATH.'wp-admin/includes/image.php');
 
 
 
 
 
 
 
 
456
  }
457
+ $name = $_FILES['wpua-file']['name'];
458
+ $file = wp_handle_upload($_FILES['wpua-file'], array('test_form' => false));
459
+ if(!empty($_FILES['wpua-file']['type'])){
460
+ $type = $_FILES['wpua-file']['type'];
461
+ // Allow only JPG, GIF, PNG
462
+ if(!preg_match('/(jpe?g|gif|png)$/i', $type)){
463
+ wp_die(__('Sorry, this file type is not permitted for security reasons.'));
464
+ } else {
465
+ // Break out file info
466
+ $name_parts = pathinfo($name);
467
+ $name = trim(substr($name, 0, -(1 + strlen($name_parts['extension']))));
468
+ $url = $file['url'];
469
+ $file = $file['file'];
470
+ $title = $name;
471
+ // Use image exif/iptc data for title if possible
472
+ if($image_meta = @wp_read_image_metadata($file)){
473
+ if(trim($image_meta['title']) && !is_numeric(sanitize_title($image_meta['title']))){
474
+ $title = $image_meta['title'];
475
+ }
476
+ }
477
+ // Construct the attachment array
478
+ $attachment = array(
479
+ 'guid' => $url,
480
+ 'post_mime_type' => $type,
481
+ 'post_title' => $title,
482
+ 'post_content' => ""
483
+ );
484
+ // This should never be set as it would then overwrite an existing attachment
485
+ if(isset($attachment['ID'])){
486
+ unset($attachment['ID']);
487
+ }
488
+ // Save the attachment metadata
489
+ $attachment_id = wp_insert_attachment($attachment, $file);
490
+ if(!is_wp_error($attachment_id)){
491
+ wp_update_attachment_metadata($attachment_id, wp_generate_attachment_metadata($attachment_id, $file));
492
+ $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->postmeta WHERE meta_key = %s AND meta_value = %d", '_wp_attachment_wp_user_avatar', $user_id));
493
+ add_post_meta($attachment_id, '_wp_attachment_wp_user_avatar', $user_id);
494
+ update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', $attachment_id);
495
+ }
496
  }
497
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  }
499
  }
500
  }
530
  global $blog_id, $wpdb;
531
  $wpua = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
532
  $wpua_image = wp_get_attachment_image($wpua, array(32,32));
533
+ if($column_name == 'wp-user-avatar'){ $value = $wpua_image; }
534
+ return $value;
 
535
  }
536
 
537
  // Media uploader
541
  if(current_user_can('upload_files')){
542
  wp_enqueue_script('admin-bar');
543
  wp_enqueue_media();
544
+ wp_enqueue_script('wp-user-avatar', WPUA_URLPATH.'js/wp-user-avatar.js', array('jquery'), WPUA_VERSION, true);
545
+ } else {
546
+ wp_enqueue_script('wp-user-avatar', WPUA_URLPATH.'js/wp-user-avatar-user.js', array('jquery'), WPUA_VERSION, true);
547
  }
 
548
  wp_enqueue_style('wp-user-avatar', WPUA_URLPATH.'css/wp-user-avatar.css', "", WPUA_VERSION);
549
  // Admin scripts
550
  if($pagenow == 'options-discussion.php' || ($pagenow == 'options-general.php' && isset($_GET['page']) && $_GET['page'] == 'wp-user-avatar')){
569
 
570
  // Returns true if user has Gravatar-hosted image
571
  function wpua_has_gravatar($id_or_email, $has_gravatar=false, $user="", $email=""){
 
572
  if(!is_object($id_or_email) && !empty($id_or_email)){
573
  // Find user by ID or e-mail address
574
  $user = is_numeric($id_or_email) ? get_user_by('id', $id_or_email) : get_user_by('email', $id_or_email);
576
  $email = !empty($user) ? $user->user_email : "";
577
  }
578
  // Check if Gravatar image returns 200 (OK) or 404 (Not Found)
579
+ $hash = md5(strtolower(trim($email)));
580
+ $gravatar = 'http://www.gravatar.com/avatar/'.$hash.'?d=404';
581
+ $data = wp_cache_get($hash);
582
+ if(false === $data){
583
+ $response = wp_remote_head($gravatar);
584
+ $data = is_wp_error($response) ? 'not200' : $response['response']['code'];
585
+ wp_cache_set($hash, $data, $group="", $expire=60*5);
586
  }
587
+ $has_gravatar = ($data == '200') ? true : false;
588
  return $has_gravatar;
589
  }
590
 
598
  $user_id = !empty($user) ? $user->ID : "";
599
  }
600
  $wpua = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
601
+ $has_wpua = !empty($wpua) && wp_attachment_is_image($wpua) ? true : false;
602
  return $has_wpua;
603
  }
604
 
605
  // Replace get_avatar only in get_wp_user_avatar
606
  function wpua_get_avatar_filter($avatar, $id_or_email="", $size="", $default="", $alt=""){
607
+ global $avatar_default, $mustache_admin, $mustache_avatar, $mustache_medium, $mustache_original, $mustache_thumbnail, $post, $wpua_avatar_default, $wpua_disable_gravatar;
608
  // User has WPUA
609
  if(is_object($id_or_email)){
610
+ if(!empty($id_or_email->comment_author_email)){
611
+ $avatar = get_wp_user_avatar($id_or_email, $size, $default, $alt);
612
  } else {
613
  $avatar = get_wp_user_avatar('unknown@gravatar.com', $size, $default, $alt);
614
  }
621
  // User doesn't have WPUA or Gravatar and Default Avatar is wp_user_avatar, show custom Default Avatar
622
  } elseif($avatar_default == 'wp_user_avatar'){
623
  // Show custom Default Avatar
624
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)){
625
  // Get image
626
  $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
627
  // Image src
628
  $default = $wpua_avatar_default_image[0];
629
  // Add dimensions if numeric size
630
  $dimensions = ' width="'.$wpua_avatar_default_image[1].'" height="'.$wpua_avatar_default_image[2].'"';
 
631
  } else {
632
  // Get mustache image based on numeric size comparison
633
  if($size > get_option('medium_size_w')){
643
  }
644
  // Add dimensions if numeric size
645
  $dimensions = ' width="'.$size.'" height="'.$size.'"';
 
646
  }
647
  // Construct the img tag
648
+ $avatar = '<img src="'.$default.'"'.$dimensions.' alt="'.$alt.'" class="avatar avatar-'.$size.' wp-user-avatar wp-user-avatar-'.$size.' photo avatar-default" />';
649
  }
650
  }
651
  return $avatar;
663
  // User doesn't have Gravatar and Default Avatar is wp_user_avatar, show custom Default Avatar
664
  if(!wpua_has_gravatar($id_or_email) && $avatar_default == 'wp_user_avatar'){
665
  // Show custom Default Avatar
666
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)){
667
  $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
668
  $default = $wpua_avatar_default_image[0];
669
  } else {
674
  $wpua_image = get_avatar($id_or_email, $size);
675
  // Takes the img tag, extracts the src
676
  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $wpua_image, $matches, PREG_SET_ORDER);
677
+ $default = !empty($matches) ? $matches [0] [1] : "";
678
  }
679
  } else {
680
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)){
681
  $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
682
  $default = $wpua_avatar_default_image[0];
683
  } else {
688
  }
689
 
690
  // Find WPUA, show get_avatar if empty
691
+ function get_wp_user_avatar($id_or_email="", $size='96', $align="", $alt="", $email='unknown@gravatar.com'){
692
+ global $avatar_default, $blog_id, $post, $wpdb, $_wp_additional_image_sizes;
693
  // Checks if comment
694
  if(is_object($id_or_email)){
695
  // Checks if comment author is registered user by user ID
696
+ if($id_or_email->user_id != 0){
697
+ $email = $id_or_email->user_id;
698
  // Checks that comment author isn't anonymous
699
+ } elseif(!empty($id_or_email->comment_author_email)){
700
  // Checks if comment author is registered user by e-mail address
701
+ $user = get_user_by('email', $id_or_email->comment_author_email);
702
  // Get registered user info from profile, otherwise e-mail address should be value
703
+ $email = !empty($user) ? $user->ID : $id_or_email->comment_author_email;
704
  }
705
+ $alt = $id_or_email->comment_author;
706
  } else {
707
  if(!empty($id_or_email)){
708
  // Find user by ID or e-mail address
721
  }
722
  // Set user's ID and name
723
  if(!empty($user)){
724
+ $email = $user->ID;
725
  $alt = $user->display_name;
726
  }
727
  }
728
  // Checks if user has WPUA
729
+ $wpua_meta = get_the_author_meta($wpdb->get_blog_prefix($blog_id).'user_avatar', $email);
730
  // Add alignment class
731
+ $alignclass = !empty($align) && ($align == 'left' || $align == 'right' || $align == 'center') ? ' align'.$align : ' alignnone';
732
  // User has WPUA, bypass get_avatar
733
  if(!empty($wpua_meta)){
734
  // Numeric size use size array
738
  // Add dimensions to img only if numeric size was specified
739
  $dimensions = is_numeric($size) ? ' width="'.$wpua_image[1].'" height="'.$wpua_image[2].'"' : "";
740
  // Construct the img tag
741
+ $avatar = '<img src="'.$wpua_image[0].'"'.$dimensions.' alt="'.$alt.'" class="avatar avatar-'.$size.' wp-user-avatar wp-user-avatar-'.$size.$alignclass.' photo" />';
742
  } else {
743
  // Get numeric sizes for non-numeric sizes based on media options
744
+ if(!function_exists('get_intermediate_image_sizes')){
745
+ require_once(ABSPATH.'wp-admin/includes/media.php');
746
+ }
747
+ // Check for custom image sizes
748
+ $all_sizes = array_merge(get_intermediate_image_sizes(), array('original'));
749
+ if(in_array($size, $all_sizes)){
750
+ if(in_array($size, array('original', 'large', 'medium', 'thumbnail'))){
751
+ $get_size = ($size == 'original') ? get_option('large_size_w') : get_option($size.'_size_w');
752
+ } else {
753
+ $get_size = $_wp_additional_image_sizes[$size]['width'];
754
+ }
755
  } else {
756
  // Numeric sizes leave as-is
757
  $get_size = $size;
758
  }
759
  // User with no WPUA uses get_avatar
760
+ $avatar = get_avatar($email, $get_size, $default="", $alt="");
761
  // Remove width and height for non-numeric sizes
762
+ if(in_array($size, array('original', 'large', 'medium', 'thumbnail'))){
 
763
  $avatar = preg_replace('/(width|height)=\"\d*\"\s/', "", $avatar);
764
+ $avatar = preg_replace("/(width|height)=\'\d*\'\s/", "", $avatar);
 
765
  }
766
+ $str_replacemes = array('wp-user-avatar ', 'wp-user-avatar-'.$get_size.' ', 'wp-user-avatar-'.$size.' ', 'avatar-'.$get_size, 'photo');
767
+ $str_replacements = array("", "", "", 'avatar-'.$size, 'wp-user-avatar wp-user-avatar-'.$size.$alignclass.' photo');
768
+ $avatar = str_replace($str_replacemes, $str_replacements, $avatar);
769
  }
770
  return $avatar;
771
  }
778
  // Takes the img tag, extracts the src
779
  if(!empty($wpua_image)){
780
  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $wpua_image, $matches, PREG_SET_ORDER);
781
+ $wpua_image_src = !empty($matches) ? $matches [0] [1] : "";
782
  }
783
  return $wpua_image_src;
784
  }
795
  $user = empty($user) ? get_user_by('email', $user) : $user;
796
  }
797
  // Get user ID
798
+ $id_or_email = !empty($user) ? $user->ID : 'unknown@gravatar.com';
799
  // Check if link is set
800
  if(!empty($link)){
801
  // CSS class is same as link type, except for URL
854
  $avatar_list .= '<br />';
855
  }
856
  // Show remove link if custom Default Avatar is set
857
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)){
858
  $avatar_thumb_src = wp_get_attachment_image_src($wpua_avatar_default, array(32,32));
859
  $avatar_thumb = $avatar_thumb_src[0];
860
  $hide_remove = "";
861
  } else {
862
  $avatar_thumb = $mustache_admin;
863
+ $hide_remove = ' style="display:none;"';
864
  }
865
  // Default Avatar is wp_user_avatar, check the radio button next to it
866
  $selected_avatar = ((bool) $wpua_disable_gravatar == 1 || $avatar_default == 'wp_user_avatar') ? ' checked="checked" ' : "";
924
 
925
  // Admin page
926
  function wpua_options_page(){
927
+ global $show_avatars, $upload_size_limit_with_units, $wpua_allow_upload, $wpua_disable_gravatar, $wpua_edit_avatar, $wpua_resize_crop, $wpua_resize_h, $wpua_resize_upload, $wpua_resize_w, $wpua_tinymce, $wpua_upload_size_limit, $wpua_upload_size_limit_with_units;
928
  // Give subscribers edit_posts capability
929
  if(isset($_GET['settings-updated']) && $_GET['settings-updated'] == 'true' && (empty($wpua_allow_upload) || empty($wpua_edit_avatar))){
930
  wpua_subscriber_remove_cap();
931
  }
932
+ $hide_size = (bool) $wpua_allow_upload != 1 ? ' style="display:none;"' : "";
933
+ $hide_resize = (bool) $wpua_resize_upload != 1 ? ' style="display:none;"' : "";
934
  ?>
935
  <div class="wrap">
936
  <?php screen_icon(); ?>
948
  <input name="wp_user_avatar_tinymce" type="checkbox" id="wp_user_avatar_tinymce" value="1" <?php checked($wpua_tinymce, 1); ?> />
949
  <?php _e('Add avatar button to Visual Editor', 'wp-user-avatar'); ?>
950
  </label>
951
+ </fieldset>
952
+ <fieldset>
953
  <label for="wp_user_avatar_allow_upload">
954
  <input name="wp_user_avatar_allow_upload" type="checkbox" id="wp_user_avatar_allow_upload" value="1" <?php checked($wpua_allow_upload, 1); ?> />
955
  <?php _e('Allow Contributors & Subscribers to upload avatars', 'wp-user-avatar'); ?>
956
  </label>
957
+ </fieldset>
958
+ <fieldset>
959
  <label for="wp_user_avatar_disable_gravatar">
960
  <input name="wp_user_avatar_disable_gravatar" type="checkbox" id="wp_user_avatar_disable_gravatar" value="1" <?php checked($wpua_disable_gravatar, 1); ?> />
961
  <?php _e('Disable Gravatar and use only local avatars', 'wp-user-avatar'); ?>
963
  </fieldset>
964
  </td>
965
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
966
  </table>
967
+ <div id="wpua-contributors-subscribers"<?php echo $hide_size; ?>>
968
+ <table class="form-table">
969
+ <tr valign="top">
970
+ <th scope="row">
971
+ <label for="wp_user_avatar_upload_size_limit">
972
+ <?php _e('Upload Size Limit', 'wp-user-avatar'); ?> <?php _e('(only for Contributors & Subscribers)', 'wp-user-avatar'); ?>
973
+ </label>
974
+ </th>
975
+ <td>
976
+ <fieldset>
977
+ <legend class="screen-reader-text"><span><?php _e('Upload Size Limit', 'wp-user-avatar'); ?> <?php _e('(only for Contributors & Subscribers)', 'wp-user-avatar'); ?></span></legend>
978
+ <input name="wp_user_avatar_upload_size_limit" type="text" id="wp_user_avatar_upload_size_limit" value="<?php echo $wpua_upload_size_limit; ?>" class="regular-text" />
979
+ <span id="wpua-readable-size"><?php echo $wpua_upload_size_limit_with_units; ?></span>
980
+ <span id="wpua-readable-size-error"><?php printf(__('%s exceeds the maximum upload size for this site.'), ""); ?></span>
981
+ <div id="wpua-slider"></div>
982
+ <span class="description"><?php printf(__('Maximum upload file size: %d%s.'), esc_html(wp_max_upload_size()), esc_html(' bytes ('.$upload_size_limit_with_units.')')); ?></span>
983
+ </fieldset>
984
+ <fieldset>
985
+ <label for="wp_user_avatar_edit_avatar">
986
+ <input name="wp_user_avatar_edit_avatar" type="checkbox" id="wp_user_avatar_edit_avatar" value="1" <?php checked($wpua_edit_avatar, 1); ?> />
987
+ <?php _e('Allow users to edit avatars', 'wp-user-avatar'); ?>
988
+ </label>
989
+ </fieldset>
990
+ <fieldset>
991
+ <label for="wp_user_avatar_resize_upload">
992
+ <input name="wp_user_avatar_resize_upload" type="checkbox" id="wp_user_avatar_resize_upload" value="1" <?php checked($wpua_resize_upload, 1); ?> />
993
+ <?php _e('Resize avatars on upload', 'wp-user-avatar'); ?>
994
+ </label>
995
+ </fieldset>
996
+ <fieldset id="wpua-resize-sizes"<?php echo $hide_resize; ?>
997
+ <br />
998
+ <br />
999
+ <label for="wp_user_avatar_resize_w"><?php _e('Width'); ?></label>
1000
+ <input name="wp_user_avatar_resize_w" type="number" step="1" min="0" id="wp_user_avatar_resize_w" value="<?php form_option('wp_user_avatar_resize_w'); ?>" class="small-text" />
1001
+ <label for="wp_user_avatar_resize_h"><?php _e('Height'); ?></label>
1002
+ <input name="wp_user_avatar_resize_h" type="number" step="1" min="0" id="wp_user_avatar_resize_h" value="<?php form_option('wp_user_avatar_resize_h'); ?>" class="small-text" />
1003
+ <br />
1004
+ <input name="wp_user_avatar_resize_crop" type="checkbox" id="wp_user_avatar_resize_crop" value="1" <?php checked('1', $wpua_resize_crop); ?> />
1005
+ <label for="wp_user_avatar_resize_crop"><?php _e('Crop avatars to exact dimensions', 'wp-user-avatar'); ?></label>
1006
+ </fieldset>
1007
+ </td>
1008
+ </tr>
1009
+ </table>
1010
+ </div>
1011
  <h3 class="title"><?php _e('Avatars'); ?></h3>
1012
  <p><?php _e('An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site.'); ?></p>
1013
  <table class="form-table">
1070
  register_setting('wpua-settings-group', 'wp_user_avatar_allow_upload', 'intval');
1071
  register_setting('wpua-settings-group', 'wp_user_avatar_disable_gravatar', 'intval');
1072
  register_setting('wpua-settings-group', 'wp_user_avatar_edit_avatar', 'intval');
1073
+ register_setting('wpua-settings-group', 'wp_user_avatar_resize_crop', 'intval');
1074
+ register_setting('wpua-settings-group', 'wp_user_avatar_resize_h', 'intval');
1075
+ register_setting('wpua-settings-group', 'wp_user_avatar_resize_upload', 'intval');
1076
+ register_setting('wpua-settings-group', 'wp_user_avatar_resize_w', 'intval');
1077
  register_setting('wpua-settings-group', 'wp_user_avatar_upload_size_limit', 'intval');
1078
  }
1079
 
1090
  }
1091
  add_action('plugins_loaded', 'wpua_load');
1092
  }
1093
+
1094
  ?>