WP User Avatar - Version 1.9

Version Description

  • Add: Filters throughout plugin
  • Bug Fix: Die messages
  • Update: Move public functions to class
Download this release

Release Info

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

Code changes from version 1.5.4 to 1.9

Files changed (37) hide show
  1. css/wp-user-avatar.css +6 -5
  2. images/{wp-user-avatar-150x150.png → wpua-150x150.png} +0 -0
  3. images/{wp-user-avatar-300x300.png → wpua-300x300.png} +0 -0
  4. images/{wp-user-avatar-32x32.png → wpua-32x32.png} +0 -0
  5. images/{wp-user-avatar-96x96.png → wpua-96x96.png} +0 -0
  6. images/wpua-icon.png +0 -0
  7. images/{wp-user-avatar.png → wpua.png} +0 -0
  8. includes/class-wp-user-avatar-admin.php +249 -0
  9. includes/class-wp-user-avatar-functions.php +233 -0
  10. includes/class-wp-user-avatar-list-table.php +288 -0
  11. includes/class-wp-user-avatar-shortcode.php +144 -0
  12. includes/class-wp-user-avatar-subscriber.php +84 -0
  13. includes/class-wp-user-avatar-update.php +72 -0
  14. includes/class-wp-user-avatar.php +289 -0
  15. includes/tinymce/editor_plugin.js +1 -1
  16. includes/tinymce/window.php +122 -71
  17. includes/wpua-functions.php +96 -0
  18. includes/wpua-globals.php +54 -0
  19. includes/wpua-media-page.php +85 -0
  20. includes/wpua-options-page.php +162 -0
  21. includes/{tinymce.php → wpua-tinymce.php} +12 -17
  22. js/wp-user-avatar-admin.js +25 -22
  23. js/wp-user-avatar-user.js +31 -0
  24. js/wp-user-avatar.js +1 -1
  25. lang/wp-user-avatar-de_DE.mo +0 -0
  26. lang/wp-user-avatar-de_DE.po +35 -15
  27. lang/wp-user-avatar-es_ES.mo +0 -0
  28. lang/wp-user-avatar-es_ES.po +35 -15
  29. lang/wp-user-avatar-fr_FR.mo +0 -0
  30. lang/wp-user-avatar-fr_FR.po +35 -15
  31. lang/wp-user-avatar-pl_PL.mo +0 -0
  32. lang/wp-user-avatar-pl_PL.po +81 -0
  33. lang/wp-user-avatar-sv_SE.mo +0 -0
  34. lang/wp-user-avatar-sv_SE.po +35 -15
  35. readme.txt +288 -32
  36. uninstall.php +20 -10
  37. wp-user-avatar.php +26 -967
css/wp-user-avatar.css CHANGED
@@ -1,11 +1,12 @@
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; }
8
- #wpua-edit { padding-left: 15px !important; }
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-readable-size-error, .wpua-error { color: #c00 !important; font-weight: 700 !important; }
2
+ #wpua-readable-size-error, #wpua-undo-button { display: none; }
3
+ #wpua-preview { margin-right: 10px; }
4
  #wpua-preview, #wpua-thumbnail { display: inline-block; text-align: center; vertical-align: top; }
 
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; }
8
+ #wpua-edit #wpua-remove, #wpua-edit #wpua-undo { margin-left: 10px !important; }
 
9
  #wpua-slider { width: 22.75em; }
10
+ #wpua-upload-messages span { display: block; }
11
  .wpua-hide { display: none !important; }
12
+ .wpua-no-avatars{ display: none; }
images/{wp-user-avatar-150x150.png → wpua-150x150.png} RENAMED
File without changes
images/{wp-user-avatar-300x300.png → wpua-300x300.png} RENAMED
File without changes
images/{wp-user-avatar-32x32.png → wpua-32x32.png} RENAMED
File without changes
images/{wp-user-avatar-96x96.png → wpua-96x96.png} RENAMED
File without changes
images/wpua-icon.png ADDED
Binary file
images/{wp-user-avatar.png → wpua.png} RENAMED
File without changes
includes/class-wp-user-avatar-admin.php ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Defines all of administrative, activation, and deactivation settings.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ class WP_User_Avatar_Admin {
10
+ public function __construct() {
11
+ global $show_avatars, $wpua_allow_upload, $wpua_tinymce;
12
+ // Initialize default settings
13
+ register_activation_hook(WPUA_DIR.'wp-user-avatar.php', array($this, 'wpua_options'));
14
+ // Settings saved to wp_options
15
+ add_action('admin_init', array($this, 'wpua_options'));
16
+ // Remove subscribers edit_posts capability
17
+ register_deactivation_hook(WPUA_DIR.'wp-user-avatar.php', array($this, 'wpua_deactivate'));
18
+ // Translations
19
+ load_plugin_textdomain('wp-user-avatar', "", WPUA_FOLDER.'/lang');
20
+ // Admin menu settings
21
+ add_action('admin_menu', array($this, 'wpua_admin'));
22
+ // Default avatar
23
+ add_filter('default_avatar_select', array($this, 'wpua_add_default_avatar'), 10);
24
+ add_filter('whitelist_options', array($this, 'wpua_whitelist_options'), 10);
25
+ // Additional plugin info
26
+ add_filter('plugin_action_links', array($this, 'wpua_action_links'), 10, 2);
27
+ add_filter('plugin_row_meta', array($this, 'wpua_row_meta'), 10, 2);
28
+ // Hide column in Users table if default avatars are enabled
29
+ if((bool) $show_avatars == 0 && is_admin()) {
30
+ add_filter('manage_users_columns', array($this, 'wpua_add_column'), 10, 1);
31
+ add_filter('manage_users_custom_column', array($this, 'wpua_show_column'), 10, 3);
32
+ }
33
+ // Media states
34
+ add_filter('display_media_states', array($this, 'wpua_add_media_state'), 10, 1);
35
+ // Load TinyMCE only if enabled
36
+ if((bool) $wpua_tinymce == 1) {
37
+ include_once(WPUA_INC.'wpua-tinymce.php');
38
+ }
39
+ }
40
+
41
+ // Settings saved to wp_options
42
+ public function wpua_options() {
43
+ add_option('avatar_default_wp_user_avatar', "");
44
+ add_option('wp_user_avatar_allow_upload', '0');
45
+ add_option('wp_user_avatar_disable_gravatar', '0');
46
+ add_option('wp_user_avatar_edit_avatar', '1');
47
+ add_option('wp_user_avatar_resize_crop', '0');
48
+ add_option('wp_user_avatar_resize_h', '96');
49
+ add_option('wp_user_avatar_resize_upload', '0');
50
+ add_option('wp_user_avatar_resize_w', '96');
51
+ add_option('wp_user_avatar_tinymce', '1');
52
+ add_option('wp_user_avatar_upload_size_limit', '0');
53
+ }
54
+
55
+ // On deactivation
56
+ public function wpua_deactivate() {
57
+ global $blog_id, $wpdb;
58
+ $wp_user_roles = $wpdb->get_blog_prefix($blog_id).'user_roles';
59
+ $user_roles = get_option($wp_user_roles);
60
+ // Remove subscribers edit_posts capability
61
+ unset($user_roles['subscriber']['capabilities']['edit_posts']);
62
+ update_option($wp_user_roles, $user_roles);
63
+ // Reset all default avatar to Mystery Man
64
+ update_option('avatar_default', 'mystery');
65
+ }
66
+
67
+ // Add options page and settings
68
+ public function wpua_admin() {
69
+ add_menu_page(__('WP User Avatar', 'wp-user-avatar'), __('WP User Avatar', 'wp-user-avatar'), 'manage_options', 'wp-user-avatar', array($this, 'wpua_options_page'), WPUA_URL.'images/wpua-icon.png');
70
+ add_submenu_page('wp-user-avatar', __('Settings'), __('Settings'), 'manage_options', 'wp-user-avatar', array($this, 'wpua_options_page'));
71
+ $hook = add_submenu_page('wp-user-avatar', __('Library'), __('Library'), 'manage_options', 'wp-user-avatar-library', array($this, 'wpua_media_page'));
72
+ add_action("load-$hook", array($this, 'wpua_media_screen_option'));
73
+ add_filter('set-screen-option', array($this, 'wpua_set_media_screen_option'), 10, 3);
74
+ add_action('admin_init', array($this, 'wpua_register_settings'));
75
+ }
76
+
77
+ // Checks if current page is settings page
78
+ public function wpua_is_menu_page() {
79
+ global $pagenow;
80
+ $is_menu_page = ($pagenow == 'admin.php' && isset($_GET['page']) && $_GET['page'] == 'wp-user-avatar') ? true : false;
81
+ return $is_menu_page;
82
+ }
83
+
84
+ // Media page
85
+ public function wpua_media_page() {
86
+ require_once(WPUA_INC.'wpua-media-page.php');
87
+ }
88
+
89
+ // Avatars per page
90
+ public function wpua_media_screen_option() {
91
+ $option = 'per_page';
92
+ $args = array(
93
+ 'label' => __('Avatars'),
94
+ 'default' => 10,
95
+ 'option' => 'upload_per_page'
96
+ );
97
+ add_screen_option($option, $args);
98
+ }
99
+
100
+ // Save per page setting
101
+ public function wpua_set_media_screen_option($status, $option, $value) {
102
+ if($option == 'upload_per_page') {
103
+ return $value;
104
+ }
105
+ return $status;
106
+ }
107
+
108
+ // Options page
109
+ public function wpua_options_page() {
110
+ require_once(WPUA_INC.'wpua-options-page.php');
111
+ }
112
+
113
+ // Whitelist settings
114
+ public function wpua_register_settings() {
115
+ $wpua_register_settings = array();
116
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'avatar_rating');
117
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'avatar_default');
118
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'avatar_default_wp_user_avatar', 'intval');
119
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'show_avatars', 'intval');
120
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_tinymce', 'intval');
121
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_allow_upload', 'intval');
122
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_disable_gravatar', 'intval');
123
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_edit_avatar', 'intval');
124
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_resize_crop', 'intval');
125
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_resize_h', 'intval');
126
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_resize_upload', 'intval');
127
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_resize_w', 'intval');
128
+ $wpua_register_settings[] = register_setting('wpua-settings-group', 'wp_user_avatar_upload_size_limit', 'intval');
129
+ return apply_filters('wpua_register_settings', $wpua_register_settings);
130
+ }
131
+
132
+ // Add default avatar
133
+ public function wpua_add_default_avatar($avatar_list=null) {
134
+ global $avatar_default, $mustache_admin, $mustache_medium, $wpua_avatar_default, $wpua_disable_gravatar, $wpua_functions;
135
+ // Remove get_avatar filter
136
+ remove_filter('get_avatar', array($wpua_functions, 'wpua_get_avatar_filter'));
137
+ // Set avatar_list variable
138
+ $avatar_list = "";
139
+ // Set avatar defaults
140
+ $avatar_defaults = array(
141
+ 'mystery' => __('Mystery Man'),
142
+ 'blank' => __('Blank'),
143
+ 'gravatar_default' => __('Gravatar Logo'),
144
+ 'identicon' => __('Identicon (Generated)'),
145
+ 'wavatar' => __('Wavatar (Generated)'),
146
+ 'monsterid' => __('MonsterID (Generated)'),
147
+ 'retro' => __('Retro (Generated)')
148
+ );
149
+ // No Default Avatar, set to Mystery Man
150
+ if(empty($avatar_default)) {
151
+ $avatar_default = 'mystery';
152
+ }
153
+ // Take avatar_defaults and get examples for unknown@gravatar.com
154
+ foreach($avatar_defaults as $default_key => $default_name) {
155
+ $avatar = get_avatar('unknown@gravatar.com', 32, $default_key);
156
+ $selected = ($avatar_default == $default_key) ? 'checked="checked" ' : "";
157
+ $avatar_list .= "\n\t<label><input type='radio' name='avatar_default' id='avatar_{$default_key}' value='".esc_attr($default_key)."' {$selected}/> ";
158
+ $avatar_list .= preg_replace("/src='(.+?)'/", "src='\$1&amp;forcedefault=1'", $avatar);
159
+ $avatar_list .= ' '.$default_name.'</label>';
160
+ $avatar_list .= '<br />';
161
+ }
162
+ // Show remove link if custom Default Avatar is set
163
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)) {
164
+ $avatar_thumb_src = wp_get_attachment_image_src($wpua_avatar_default, array(32,32));
165
+ $avatar_thumb = $avatar_thumb_src[0];
166
+ $hide_remove = "";
167
+ } else {
168
+ $avatar_thumb = $mustache_admin;
169
+ $hide_remove = ' class="wpua-hide"';
170
+ }
171
+ // Default Avatar is wp_user_avatar, check the radio button next to it
172
+ $selected_avatar = ((bool) $wpua_disable_gravatar == 1 || $avatar_default == 'wp_user_avatar') ? ' checked="checked" ' : "";
173
+ // Wrap WPUA in div
174
+ $avatar_thumb_img = '<div id="wpua-preview"><img src="'.$avatar_thumb.'" width="32" /></div>';
175
+ // Add WPUA to list
176
+ $wpua_list = "\n\t<label><input type='radio' name='avatar_default' id='wp_user_avatar_radio' value='wp_user_avatar'$selected_avatar /> ";
177
+ $wpua_list .= preg_replace("/src='(.+?)'/", "src='\$1'", $avatar_thumb_img);
178
+ $wpua_list .= ' '.__('WP User Avatar', 'wp-user-avatar').'</label>';
179
+ $wpua_list .= '<p id="wpua-edit"><button type="button" class="button" id="wpua-add" name="wpua-add">'.__('Choose Image').'</button>';
180
+ $wpua_list .= '<span id="wpua-remove-button"'.$hide_remove.'><a href="#" id="wpua-remove">'.__('Remove').'</a></span><span id="wpua-undo-button"><a href="#" id="wpua-undo">'.__('Undo').'</a></span></p>';
181
+ $wpua_list .= '<input type="hidden" id="wp-user-avatar" name="avatar_default_wp_user_avatar" value="'.$wpua_avatar_default.'">';
182
+ if((bool) $wpua_disable_gravatar != 1) {
183
+ return $wpua_list.'<div id="wp-avatars">'.$avatar_list.'</div>';
184
+ } else {
185
+ return $wpua_list;
186
+ }
187
+ }
188
+
189
+ // Add default avatar_default to whitelist
190
+ public function wpua_whitelist_options($whitelist_options) {
191
+ $whitelist_options['discussion'][] = 'avatar_default_wp_user_avatar';
192
+ return $whitelist_options;
193
+ }
194
+
195
+ // Add actions links on plugin page
196
+ public function wpua_action_links($links, $file) {
197
+ if(basename(dirname($file)) == 'wp-user-avatar') {
198
+ $links[] = '<a href="'.add_query_arg(array('page' => 'wp-user-avatar'), admin_url('admin.php')).'">'.__('Settings').'</a>';
199
+ }
200
+ return $links;
201
+ }
202
+
203
+ // Add row meta on plugin page
204
+ public function wpua_row_meta($links, $file) {
205
+ if(basename(dirname($file)) == 'wp-user-avatar') {
206
+ $links[] = '<a href="http://wordpress.org/support/plugin/wp-user-avatar" target="_blank">'.__('Support Forums').'</a>';
207
+ $links[] = '<a href="http://siboliban.org/donate" target="_blank">'.__('Donate', 'wp-user-avatar').'</a>';
208
+ }
209
+ return $links;
210
+ }
211
+
212
+ // Add column to Users table
213
+ public function wpua_add_column($columns) {
214
+ return $columns + array('wp-user-avatar' => __('WP User Avatar', 'wp-user-avatar'));
215
+ }
216
+
217
+ // Show thumbnail in Users table
218
+ public function wpua_show_column($value, $column_name, $user_id) {
219
+ global $blog_id, $wpdb;
220
+ $wpua = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
221
+ $wpua_image = wp_get_attachment_image($wpua, array(32,32));
222
+ if($column_name == 'wp-user-avatar') {
223
+ $value = $wpua_image;
224
+ }
225
+ return $value;
226
+ }
227
+
228
+ // Get list table
229
+ public function _wpua_get_list_table($class, $args = array()) {
230
+ require_once(WPUA_INC.'class-wp-user-avatar-list-table.php');
231
+ $args['screen'] = 'wp-user-avatar';
232
+ return new $class($args);
233
+ }
234
+
235
+ // Add media states
236
+ public function wpua_add_media_state($media_states) {
237
+ global $post, $wpua_avatar_default;
238
+ $is_wpua = get_post_custom_values('_wp_attachment_wp_user_avatar', $post->ID);
239
+ if(!empty($is_wpua)) {
240
+ $media_states[] = __('Avatar');
241
+ }
242
+ if(!empty($wpua_avatar_default) && ($wpua_avatar_default == $post->ID)) {
243
+ $media_states[] = __('Default Avatar');
244
+ }
245
+ return apply_filters('wpua_add_media_state', $media_states);
246
+ }
247
+ }
248
+
249
+ $wpua_admin = new WP_User_Avatar_Admin();
includes/class-wp-user-avatar-functions.php ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Core user functions.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ class WP_User_Avatar_Functions {
10
+ public function __construct() {
11
+ add_filter('get_avatar', array($this, 'wpua_get_avatar_filter'), 10, 6);
12
+ }
13
+
14
+ // Returns true if user has Gravatar-hosted image
15
+ public function wpua_has_gravatar($id_or_email, $has_gravatar=false, $user="", $email="") {
16
+ if(!is_object($id_or_email) && !empty($id_or_email)) {
17
+ // Find user by ID or e-mail address
18
+ $user = is_numeric($id_or_email) ? get_user_by('id', $id_or_email) : get_user_by('email', $id_or_email);
19
+ // Get registered user e-mail address
20
+ $email = !empty($user) ? $user->user_email : "";
21
+ }
22
+ // Check if Gravatar image returns 200 (OK) or 404 (Not Found)
23
+ $hash = md5(strtolower(trim($email)));
24
+ $gravatar = 'http://www.gravatar.com/avatar/'.$hash.'?d=404';
25
+ $data = wp_cache_get($hash);
26
+ if(false === $data) {
27
+ $response = wp_remote_head($gravatar);
28
+ $data = is_wp_error($response) ? 'not200' : $response['response']['code'];
29
+ wp_cache_set($hash, $data, $group="", $expire=60*5);
30
+ }
31
+ $has_gravatar = ($data == '200') ? true : false;
32
+ return apply_filters('wpua_has_gravatar', $has_gravatar);
33
+ }
34
+
35
+ // Returns true if user has wp_user_avatar
36
+ public function has_wp_user_avatar($id_or_email="", $has_wpua=false, $user="", $user_id="") {
37
+ global $blog_id, $wpdb;
38
+ if(!is_object($id_or_email) && !empty($id_or_email)) {
39
+ // Find user by ID or e-mail address
40
+ $user = is_numeric($id_or_email) ? get_user_by('id', $id_or_email) : get_user_by('email', $id_or_email);
41
+ // Get registered user ID
42
+ $user_id = !empty($user) ? $user->ID : "";
43
+ }
44
+ $wpua = get_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
45
+ $has_wpua = !empty($wpua) && wp_attachment_is_image($wpua) ? true : false;
46
+ return apply_filters('has_wp_user_avatar', $has_wpua);
47
+ }
48
+
49
+ // Replace get_avatar only in get_wp_user_avatar
50
+ public function wpua_get_avatar_filter($avatar, $id_or_email="", $size="", $default="", $alt="") {
51
+ global $avatar_default, $mustache_admin, $mustache_avatar, $mustache_medium, $mustache_original, $mustache_thumbnail, $post, $wpua_avatar_default, $wpua_disable_gravatar, $wpua_functions;
52
+ // User has WPUA
53
+ if(is_object($id_or_email)) {
54
+ if(!empty($id_or_email->comment_author_email)) {
55
+ $avatar = get_wp_user_avatar($id_or_email, $size, $default, $alt);
56
+ } else {
57
+ $avatar = get_wp_user_avatar('unknown@gravatar.com', $size, $default, $alt);
58
+ }
59
+ } else {
60
+ if(has_wp_user_avatar($id_or_email)) {
61
+ $avatar = get_wp_user_avatar($id_or_email, $size, $default, $alt);
62
+ // User has Gravatar and Gravatar is not disabled
63
+ } elseif((bool) $wpua_disable_gravatar != 1 && $wpua_functions->wpua_has_gravatar($id_or_email)) {
64
+ $avatar = $avatar;
65
+ // User doesn't have WPUA or Gravatar and Default Avatar is wp_user_avatar, show custom Default Avatar
66
+ } elseif($avatar_default == 'wp_user_avatar') {
67
+ // Show custom Default Avatar
68
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)) {
69
+ // Get image
70
+ $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
71
+ // Image src
72
+ $default = $wpua_avatar_default_image[0];
73
+ // Add dimensions if numeric size
74
+ $dimensions = ' width="'.$wpua_avatar_default_image[1].'" height="'.$wpua_avatar_default_image[2].'"';
75
+ } else {
76
+ // Get mustache image based on numeric size comparison
77
+ if($size > get_option('medium_size_w')) {
78
+ $default = $mustache_original;
79
+ } elseif($size <= get_option('medium_size_w') && $size > get_option('thumbnail_size_w')) {
80
+ $default = $mustache_medium;
81
+ } elseif($size <= get_option('thumbnail_size_w') && $size > 96) {
82
+ $default = $mustache_thumbnail;
83
+ } elseif($size <= 96 && $size > 32) {
84
+ $default = $mustache_avatar;
85
+ } elseif($size <= 32) {
86
+ $default = $mustache_admin;
87
+ }
88
+ // Add dimensions if numeric size
89
+ $dimensions = ' width="'.$size.'" height="'.$size.'"';
90
+ }
91
+ // Construct the img tag
92
+ $avatar = '<img src="'.$default.'"'.$dimensions.' alt="'.$alt.'" class="avatar avatar-'.$size.' wp-user-avatar wp-user-avatar-'.$size.' photo avatar-default" />';
93
+ }
94
+ }
95
+ return apply_filters('wpua_get_avatar_filter', $avatar, $id_or_email, $size, $default, $alt);
96
+ }
97
+
98
+ // Get original avatar, for when user removes wp_user_avatar
99
+ public function wpua_get_avatar_original($id_or_email, $size="", $default="", $alt="") {
100
+ global $avatar_default, $mustache_avatar, $wpua_avatar_default, $wpua_disable_gravatar, $wpua_functions;
101
+ // Remove get_avatar filter
102
+ remove_filter('get_avatar', array($wpua_functions, 'wpua_get_avatar_filter'));
103
+ if((bool) $wpua_disable_gravatar != 1) {
104
+ // User doesn't have Gravatar and Default Avatar is wp_user_avatar, show custom Default Avatar
105
+ if(!$wpua_functions->wpua_has_gravatar($id_or_email) && $avatar_default == 'wp_user_avatar') {
106
+ // Show custom Default Avatar
107
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)) {
108
+ $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
109
+ $default = $wpua_avatar_default_image[0];
110
+ } else {
111
+ $default = $mustache_avatar;
112
+ }
113
+ } else {
114
+ // Get image from Gravatar, whether it's the user's image or default image
115
+ $wpua_image = get_avatar($id_or_email, $size);
116
+ // Takes the img tag, extracts the src
117
+ $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $wpua_image, $matches, PREG_SET_ORDER);
118
+ $default = !empty($matches) ? $matches [0] [1] : "";
119
+ }
120
+ } else {
121
+ if(!empty($wpua_avatar_default) && wp_attachment_is_image($wpua_avatar_default)) {
122
+ $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, array($size,$size));
123
+ $default = $wpua_avatar_default_image[0];
124
+ } else {
125
+ $default = $mustache_avatar;
126
+ }
127
+ }
128
+ // Enable get_avatar filter
129
+ add_filter('get_avatar', array($wpua_functions, 'wpua_get_avatar_filter'), 10, 6);
130
+ return apply_filters('wpua_get_avatar_original', $default);
131
+ }
132
+
133
+ // Find WPUA, show get_avatar if empty
134
+ public function get_wp_user_avatar($id_or_email="", $size='96', $align="", $alt="", $email='unknown@gravatar.com') {
135
+ global $all_sizes, $avatar_default, $blog_id, $post, $wpdb, $_wp_additional_image_sizes;
136
+ // Checks if comment
137
+ if(is_object($id_or_email)) {
138
+ // Checks if comment author is registered user by user ID
139
+ if($id_or_email->user_id != 0) {
140
+ $email = $id_or_email->user_id;
141
+ // Checks that comment author isn't anonymous
142
+ } elseif(!empty($id_or_email->comment_author_email)) {
143
+ // Checks if comment author is registered user by e-mail address
144
+ $user = get_user_by('email', $id_or_email->comment_author_email);
145
+ // Get registered user info from profile, otherwise e-mail address should be value
146
+ $email = !empty($user) ? $user->ID : $id_or_email->comment_author_email;
147
+ }
148
+ $alt = $id_or_email->comment_author;
149
+ } else {
150
+ if(!empty($id_or_email)) {
151
+ // Find user by ID or e-mail address
152
+ $user = is_numeric($id_or_email) ? get_user_by('id', $id_or_email) : get_user_by('email', $id_or_email);
153
+ } else {
154
+ // Find author's name if id_or_email is empty
155
+ $author_name = get_query_var('author_name');
156
+ if(is_author()) {
157
+ // On author page, get user by page slug
158
+ $user = get_user_by('slug', $author_name);
159
+ } else {
160
+ // On post, get user by author meta
161
+ $user_id = get_the_author_meta('ID');
162
+ $user = get_user_by('id', $user_id);
163
+ }
164
+ }
165
+ // Set user's ID and name
166
+ if(!empty($user)) {
167
+ $email = $user->ID;
168
+ $alt = $user->display_name;
169
+ }
170
+ }
171
+ // Checks if user has WPUA
172
+ $wpua_meta = get_the_author_meta($wpdb->get_blog_prefix($blog_id).'user_avatar', $email);
173
+ // Add alignment class
174
+ $alignclass = !empty($align) && ($align == 'left' || $align == 'right' || $align == 'center') ? ' align'.$align : ' alignnone';
175
+ // User has WPUA, bypass get_avatar
176
+ if(!empty($wpua_meta)) {
177
+ // Numeric size use size array
178
+ $get_size = is_numeric($size) ? array($size,$size) : $size;
179
+ // Get image src
180
+ $wpua_image = wp_get_attachment_image_src($wpua_meta, $get_size);
181
+ // Add dimensions to img only if numeric size was specified
182
+ $dimensions = is_numeric($size) ? ' width="'.$wpua_image[1].'" height="'.$wpua_image[2].'"' : "";
183
+ // Construct the img tag
184
+ $avatar = '<img src="'.$wpua_image[0].'"'.$dimensions.' alt="'.$alt.'" class="avatar avatar-'.$size.' wp-user-avatar wp-user-avatar-'.$size.$alignclass.' photo" />';
185
+ } else {
186
+ // Check for custom image sizes
187
+ if(in_array($size, $all_sizes)) {
188
+ if(in_array($size, array('original', 'large', 'medium', 'thumbnail'))) {
189
+ $get_size = ($size == 'original') ? get_option('large_size_w') : get_option($size.'_size_w');
190
+ } else {
191
+ $get_size = $_wp_additional_image_sizes[$size]['width'];
192
+ }
193
+ } else {
194
+ // Numeric sizes leave as-is
195
+ $get_size = $size;
196
+ }
197
+ // User with no WPUA uses get_avatar
198
+ $avatar = get_avatar($email, $get_size, $default="", $alt="");
199
+ // Remove width and height for non-numeric sizes
200
+ if(in_array($size, array('original', 'large', 'medium', 'thumbnail'))) {
201
+ $avatar = preg_replace('/(width|height)=\"\d*\"\s/', "", $avatar);
202
+ $avatar = preg_replace("/(width|height)=\'\d*\'\s/", "", $avatar);
203
+ }
204
+ $str_replacemes = array('wp-user-avatar ', 'wp-user-avatar-'.$get_size.' ', 'wp-user-avatar-'.$size.' ', 'avatar-'.$get_size, 'photo');
205
+ $str_replacements = array("", "", "", 'avatar-'.$size, 'wp-user-avatar wp-user-avatar-'.$size.$alignclass.' photo');
206
+ $avatar = str_replace($str_replacemes, $str_replacements, $avatar);
207
+ }
208
+ return apply_filters('get_wp_user_avatar', $avatar, $id_or_email, $size, $default, $alt);
209
+ }
210
+
211
+ // Return just the image src
212
+ public function get_wp_user_avatar_src($id_or_email, $size="", $align="") {
213
+ $wpua_image_src = "";
214
+ // Gets the avatar img tag
215
+ $wpua_image = get_wp_user_avatar($id_or_email, $size, $align);
216
+ // Takes the img tag, extracts the src
217
+ if(!empty($wpua_image)) {
218
+ $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $wpua_image, $matches, PREG_SET_ORDER);
219
+ $wpua_image_src = !empty($matches) ? $matches [0] [1] : "";
220
+ }
221
+ return apply_filters('get_wp_user_avatar_src', $wpua_image_src);
222
+ }
223
+
224
+ // Check if avatar_upload is in use
225
+ public function wpua_has_shortcode() {
226
+ global $post;
227
+ $content = !empty($post->post_content) ? $post->post_content : null;
228
+ $has_shortcode = has_shortcode($content, 'avatar_upload') ? true : false;
229
+ return $has_shortcode;
230
+ }
231
+ }
232
+
233
+ $wpua_functions = new WP_User_Avatar_Functions();
includes/class-wp-user-avatar-list-table.php ADDED
@@ -0,0 +1,288 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Based on WP_Media_List_Table class.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ class WP_User_Avatar_List_Table extends WP_List_Table {
10
+ function __construct($args = array()) {
11
+ global $avatars_array, $post, $wpua_avatar_default;
12
+ $paged = (get_query_var('page')) ? get_query_var('page') : 1;
13
+ $q = array(
14
+ 'paged' => $paged,
15
+ 'post_type' => 'attachment',
16
+ 'post_status' => 'inherit',
17
+ 'posts_per_page' => '-1',
18
+ 'meta_query' => array(
19
+ array(
20
+ 'key' => '_wp_attachment_wp_user_avatar',
21
+ 'value' => '',
22
+ 'compare' => '!='
23
+ )
24
+ )
25
+ );
26
+ $avatars_wp_query = new WP_Query($q);
27
+ $avatars_array = array();
28
+ while($avatars_wp_query->have_posts()) : $avatars_wp_query->the_post();
29
+ $avatars_array[] = $post->ID;
30
+ endwhile;
31
+ wp_reset_query();
32
+ // Include default avatar
33
+ $avatars_array[] = $wpua_avatar_default;
34
+ parent::__construct(array(
35
+ 'plural' => 'media',
36
+ 'screen' => isset($args['screen']) ? $args['screen'] : null
37
+ ));
38
+ }
39
+
40
+ function ajax_user_can() {
41
+ return current_user_can('upload_files');
42
+ }
43
+
44
+ function search_box($text, $input_id) {
45
+ if(empty($_REQUEST['s']) && !$this->has_items())
46
+ return;
47
+ $input_id = $input_id.'-search-input';
48
+ if(!empty($_REQUEST['orderby']))
49
+ echo '<input type="hidden" name="orderby" value="'.esc_attr($_REQUEST['orderby']).'" />';
50
+ if(!empty($_REQUEST['order']))
51
+ echo '<input type="hidden" name="order" value="'.esc_attr($_REQUEST['order']).'" />';
52
+ if(!empty($_REQUEST['post_mime_type']))
53
+ echo '<input type="hidden" name="post_mime_type" value="'.esc_attr($_REQUEST['post_mime_type']).'" />';
54
+ if(!empty( $_REQUEST['detached']))
55
+ echo '<input type="hidden" name="detached" value="'.esc_attr($_REQUEST['detached']).'" />';
56
+ ?>
57
+ <p class="search-box">
58
+ <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label>
59
+ <input type="hidden" id="page" name="page" value="wp-user-avatar-library" />
60
+ <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>" />
61
+ <?php submit_button($text, 'button', false, false, array('id' => 'search-submit')); ?>
62
+ </p>
63
+ <?php
64
+ }
65
+
66
+ function prepare_items() {
67
+ global $avatars_array, $lost, $wpdb, $wp_query, $post_mime_types, $avail_post_mime_types, $post;
68
+ $q = $_REQUEST;
69
+ $q['post__in'] = $avatars_array;
70
+ list($post_mime_types, $avail_post_mime_types) = wp_edit_attachments_query($q);
71
+ $this->is_trash = isset($_REQUEST['status']) && 'trash' == $_REQUEST['status'];
72
+ $this->set_pagination_args(array(
73
+ 'total_items' => $wp_query->found_posts,
74
+ 'total_pages' => $wp_query->max_num_pages,
75
+ 'per_page' => $wp_query->query_vars['posts_per_page'],
76
+ ));
77
+ }
78
+
79
+ function get_views() {
80
+ global $avatars_array;
81
+ $type_links = array();
82
+ $_total_posts = count(array_filter($avatars_array));
83
+ $class = (empty($_GET['post_mime_type']) && !isset($_GET['status'])) ? ' class="current"' : '';
84
+ $type_links['all'] = sprintf('<a href="%s">',esc_url(add_query_arg(array('page' => 'wp-user-avatar-library'), 'admin.php'))).sprintf(_nx('All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $_total_posts, 'uploaded files'), number_format_i18n($_total_posts)).'</a>';
85
+ return $type_links;
86
+ }
87
+
88
+ function get_bulk_actions() {
89
+ $actions = array();
90
+ $actions['delete'] = __('Delete Permanently');
91
+ return $actions;
92
+ }
93
+
94
+ function current_action() {
95
+ return parent::current_action();
96
+ }
97
+
98
+ function has_items() {
99
+ return have_posts();
100
+ }
101
+
102
+ function no_items() {
103
+ _e('No media attachments found.');
104
+ }
105
+
106
+ function get_columns() {
107
+ $posts_columns = array();
108
+ $posts_columns['cb'] = '<input type="checkbox" />';
109
+ $posts_columns['icon'] = '';
110
+ $posts_columns['title'] = _x('File', 'column name');
111
+ $posts_columns['author'] = __('Author');
112
+ $posts_columns['parent'] = _x('Uploaded to', 'column name');
113
+ $posts_columns['date'] = _x('Date', 'column name');
114
+ return $posts_columns;
115
+ }
116
+
117
+ function get_sortable_columns() {
118
+ return array(
119
+ 'title' => 'title',
120
+ 'author' => 'author',
121
+ 'date' => array('date', true),
122
+ );
123
+ }
124
+
125
+ function display_rows() {
126
+ global $post, $wpdb;
127
+ add_filter('the_title','esc_html');
128
+ $alt = '';
129
+ while (have_posts()) : the_post();
130
+ $user_can_edit = current_user_can('edit_post', $post->ID);
131
+
132
+ if($this->is_trash && $post->post_status != 'trash' || !$this->is_trash && $post->post_status == 'trash')
133
+ continue;
134
+
135
+ $alt = ('alternate' == $alt) ? '' : 'alternate';
136
+ $post_owner = (get_current_user_id() == $post->post_author) ? 'self' : 'other';
137
+ $att_title = _draft_or_post_title();
138
+ ?>
139
+ <tr id='post-<?php echo $post->ID; ?>' class='<?php echo trim($alt.' author-'.$post_owner.' status-'.$post->post_status); ?>' valign="top">
140
+ <?php
141
+ list( $columns, $hidden ) = $this->get_column_info();
142
+ foreach($columns as $column_name => $column_display_name) {
143
+ $class = "class='$column_name column-$column_name'";
144
+ $style = '';
145
+ if(in_array($column_name, $hidden)) {
146
+ $style = ' style="display:none;"';
147
+ }
148
+ $attributes = $class.$style;
149
+ switch($column_name) {
150
+ case 'cb':
151
+ ?>
152
+ <th scope="row" class="check-column">
153
+ <?php if ( $user_can_edit ) { ?>
154
+ <label class="screen-reader-text" for="cb-select-<?php the_ID(); ?>"><?php echo sprintf(__('Select %s'), $att_title);?></label>
155
+ <input type="checkbox" name="media[]" id="cb-select-<?php the_ID(); ?>" value="<?php the_ID(); ?>" />
156
+ <?php } ?>
157
+ </th>
158
+ <?php
159
+ break;
160
+ case 'icon':
161
+ $attributes = 'class="column-icon media-icon"'.$style;
162
+ ?>
163
+ <td <?php echo $attributes ?>><?php
164
+ if ( $thumb = wp_get_attachment_image( $post->ID, array( 80, 60 ), true ) ) {
165
+ if ( $this->is_trash || ! $user_can_edit ) {
166
+ echo $thumb;
167
+ } else {
168
+ ?>
169
+ <a href="<?php echo get_edit_post_link( $post->ID, true ); ?>" title="<?php echo esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $att_title ) ); ?>">
170
+ <?php echo $thumb; ?>
171
+ </a>
172
+ <?php } }
173
+ ?>
174
+ </td>
175
+ <?php
176
+ break;
177
+ case 'title':
178
+ ?>
179
+ <td <?php echo $attributes ?>><strong>
180
+ <?php if ( $this->is_trash || ! $user_can_edit ) {
181
+ echo $att_title;
182
+ } else { ?>
183
+ <a href="<?php echo get_edit_post_link( $post->ID, true ); ?>"
184
+ title="<?php echo esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $att_title ) ); ?>">
185
+ <?php echo $att_title; ?></a>
186
+ <?php };
187
+ _media_states( $post ); ?></strong>
188
+ <p>
189
+ <?php
190
+ if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post->ID ), $matches ) )
191
+ echo esc_html( strtoupper( $matches[1] ) );
192
+ else
193
+ echo strtoupper( str_replace( 'image/', '', get_post_mime_type() ) );
194
+ ?>
195
+ </p>
196
+ <?php echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) ); ?>
197
+ </td>
198
+ <?php
199
+ break;
200
+ case 'author':
201
+ ?>
202
+ <td <?php echo $attributes ?>>
203
+ <?php
204
+ printf( '<a href="%s">%s</a>',
205
+ esc_url( add_query_arg( array( 'author' => get_the_author_meta('ID') ), 'upload.php' ) ),
206
+ get_the_author()
207
+ ); ?>
208
+ </td>
209
+ <?php
210
+ break;
211
+ case 'date':
212
+ if ( '0000-00-00 00:00:00' == $post->post_date ) {
213
+ $h_time = __( 'Unpublished' );
214
+ } else {
215
+ $m_time = $post->post_date;
216
+ $time = get_post_time( 'G', true, $post, false );
217
+ if ( ( abs( $t_diff = time() - $time ) ) < DAY_IN_SECONDS ) {
218
+ if ( $t_diff < 0 )
219
+ $h_time = sprintf( __( '%s from now' ), human_time_diff( $time ) );
220
+ else
221
+ $h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
222
+ } else {
223
+ $h_time = mysql2date( __( 'Y/m/d' ), $m_time );
224
+ }
225
+ }
226
+ ?>
227
+ <td <?php echo $attributes ?>><?php echo $h_time ?></td>
228
+ <?php
229
+ break;
230
+ case 'parent':
231
+ global $blog_id, $wpdb;
232
+ // Find all users with this WPUA
233
+ $wpua_metakey = $wpdb->get_blog_prefix($blog_id).'user_avatar';
234
+ $wpuas = $wpdb->get_results($wpdb->prepare("SELECT wpum.user_id FROM $wpdb->usermeta AS wpum, $wpdb->users AS wpu WHERE wpum.meta_key = %s AND wpum.meta_value = %d AND wpum.user_id = wpu.ID ORDER BY wpu.user_login", $wpua_metakey, $post->ID));
235
+ // Find users without WPUA
236
+ $nowpuas = $wpdb->get_results($wpdb->prepare("SELECT wpu.ID FROM $wpdb->users AS wpu, $wpdb->usermeta AS wpum WHERE wpum.meta_key = %s AND wpum.meta_value = %d AND wpum.user_id = wpu.ID ORDER BY wpu.user_login", $wpua_metakey, ""));
237
+ $user_array = array();
238
+ ?>
239
+ <td <?php echo $attributes ?>>
240
+ <strong>
241
+ <?php
242
+ if(!empty($wpuas)) {
243
+ foreach($wpuas as $usermeta) {
244
+ $user = get_userdata($usermeta->user_id);
245
+ $user_array[] = '<a href="'.get_edit_user_link($user->ID).'">'.$user->user_login.'</a>';
246
+ }
247
+ } else {
248
+ foreach($nowpuas as $usermeta) {
249
+ $user = get_userdata($usermeta->ID);
250
+ $user_array[] = '<a href="'.get_edit_user_link($user->ID).'">'.$user->user_login.'</a>';
251
+ }
252
+ }
253
+ ?>
254
+ <?php echo implode(', ', array_filter($user_array)); ?>
255
+ </strong>
256
+ </td>
257
+ <?php
258
+ break;
259
+ }
260
+ }
261
+ ?>
262
+ </tr>
263
+ <?php endwhile;
264
+ }
265
+
266
+ function _get_row_actions($post, $att_title) {
267
+ $actions = array();
268
+ if(current_user_can('edit_post', $post->ID) && !$this->is_trash) {
269
+ $actions['edit'] = '<a href="'.get_edit_post_link($post->ID, true).'">'.__('Edit').'</a>';
270
+ }
271
+ if(current_user_can('delete_post', $post->ID)) {
272
+ if($this->is_trash) {
273
+ $actions['untrash'] = "<a class='submitdelete' href='".wp_nonce_url("post.php?action=untrash&amp;post=$post->ID", 'untrash-post_'.$post->ID)."'>".__('Restore')."</a>";
274
+ } elseif (EMPTY_TRASH_DAYS && MEDIA_TRASH) {
275
+ $actions['trash'] = "<a class='submitdelete' href='".wp_nonce_url("post.php?action=trash&amp;post=$post->ID", 'trash-post_'. $post->ID)."'>".__('Trash')."</a>";
276
+ }
277
+ if($this->is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH) {
278
+ $delete_ays = (!$this->is_trash && !MEDIA_TRASH) ? " onclick='return showNotice.warn();'" : '';
279
+ $actions['delete'] = "<a class='submitdelete'$delete_ays href='".wp_nonce_url("post.php?action=delete&amp;post=$post->ID", 'delete-post_'.$post->ID)."'>".__('Delete Permanently')."</a>";
280
+ }
281
+ }
282
+ if(!$this->is_trash) {
283
+ $title =_draft_or_post_title($post->post_parent);
284
+ $actions['view'] = '<a href="'.get_permalink($post->ID).'" title="'.esc_attr(sprintf(__('View &#8220;%s&#8221;'), $title)).'" rel="permalink">'.__('View').'</a>';
285
+ }
286
+ return $actions;
287
+ }
288
+ }
includes/class-wp-user-avatar-shortcode.php ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Defines shortcodes.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ class WP_User_Avatar_Shortcode {
10
+ public function __construct() {
11
+ add_shortcode('avatar', array($this, 'wpua_shortcode'));
12
+ add_shortcode('avatar_upload', array($this, 'wpua_edit_shortcode'));
13
+ // Add avatar and scripts to avatar_upload
14
+ add_action('wpua_show_profile', array('wp_user_avatar', 'wpua_action_show_user_profile'));
15
+ add_action('wpua_show_profile', array('wp_user_avatar', 'wpua_media_upload_scripts'));
16
+ add_action('wpua_update', array('wp_user_avatar', 'wpua_action_process_option_update'));
17
+ // Add error messages to avatar_upload
18
+ add_action('wpua_update_errors', array('wp_user_avatar', 'wpua_upload_errors'), 10, 3);
19
+ }
20
+
21
+ // Display shortcode
22
+ public function wpua_shortcode($atts, $content=null) {
23
+ global $all_sizes, $blog_id, $post, $wpdb;
24
+ // Set shortcode attributes
25
+ extract(shortcode_atts(array('user' => "", 'size' => '96', 'align' => "", 'link' => "", 'target' => ""), $atts));
26
+ // Find user by ID, login, slug, or e-mail address
27
+ if(!empty($user)) {
28
+ $user = is_numeric($user) ? get_user_by('id', $user) : get_user_by('login', $user);
29
+ $user = empty($user) ? get_user_by('slug', $user) : $user;
30
+ $user = empty($user) ? get_user_by('email', $user) : $user;
31
+ } else {
32
+ // Find author's name if id_or_email is empty
33
+ $author_name = get_query_var('author_name');
34
+ if(is_author()) {
35
+ // On author page, get user by page slug
36
+ $user = get_user_by('slug', $author_name);
37
+ } else {
38
+ // On post, get user by author meta
39
+ $user_id = get_the_author_meta('ID');
40
+ $user = get_user_by('id', $user_id);
41
+ }
42
+ }
43
+ // Numeric sizes leave as-is
44
+ $get_size = $size;
45
+ // Check for custom image sizes if there are captions
46
+ if(!empty($content)) {
47
+ if(in_array($size, $all_sizes)) {
48
+ if(in_array($size, array('original', 'large', 'medium', 'thumbnail'))) {
49
+ $get_size = ($size == 'original') ? get_option('large_size_w') : get_option($size.'_size_w');
50
+ } else {
51
+ $get_size = $_wp_additional_image_sizes[$size]['width'];
52
+ }
53
+ }
54
+ }
55
+ // Get user ID
56
+ $id_or_email = !empty($user) ? $user->ID : 'unknown@gravatar.com';
57
+ // Check if link is set
58
+ if(!empty($link)) {
59
+ // CSS class is same as link type, except for URL
60
+ $link_class = $link;
61
+ if($link == 'file') {
62
+ // Get image src
63
+ $link = get_wp_user_avatar_src($id_or_email, 'original');
64
+ } elseif($link == 'attachment') {
65
+ // Get attachment URL
66
+ $link = get_attachment_link(get_the_author_meta($wpdb->get_blog_prefix($blog_id).'user_avatar', $id_or_email));
67
+ } else {
68
+ // URL
69
+ $link_class = 'custom';
70
+ }
71
+ // Open in new window
72
+ $target_link = !empty($target) ? ' target="'.$target.'"' : "";
73
+ // Wrap the avatar inside the link
74
+ $html = '<a href="'.$link.'" class="wp-user-avatar-link wp-user-avatar-'.$link_class.'"'.$target_link.'>'.get_wp_user_avatar($id_or_email, $get_size, $align).'</a>';
75
+ } else {
76
+ $html = get_wp_user_avatar($id_or_email, $get_size, $align);
77
+ }
78
+ // Check if caption is set
79
+ if(!empty($content)) {
80
+ // Get attachment ID
81
+ $wpua = get_user_meta($id_or_email, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
82
+ // Clean up caption
83
+ $content = trim($content);
84
+ $content = preg_replace('/\r|\n/', "", $content);
85
+ $content = preg_replace('/<\/p><p>/', "", $content, 1);
86
+ $content = preg_replace('/<\/p><p>$/', "", $content);
87
+ $content = str_replace('</p><p>', "<br /><br />", $content);
88
+ $avatar = do_shortcode(image_add_caption($html, $wpua, $content, $title="", $align, $link, $get_size, $alt=""));
89
+ } else {
90
+ $avatar = $html;
91
+ }
92
+ return $avatar;
93
+ }
94
+
95
+ // Update user
96
+ private function wpua_edit_user($user_id = 0) {
97
+ $user = new stdClass;
98
+ if($user_id) {
99
+ $update = true;
100
+ $user->ID = (int) $user_id;
101
+ } else {
102
+ $update = false;
103
+ }
104
+ $errors = new WP_Error();
105
+ do_action_ref_array('wpua_update_errors', array(&$errors, $update, &$user));
106
+ if($errors->get_error_codes()) {
107
+ return $errors;
108
+ }
109
+ if($update) {
110
+ $user_id = wp_update_user($user);
111
+ }
112
+ return $user_id;
113
+ }
114
+
115
+ // Edit shortcode
116
+ public function wpua_edit_shortcode($atts) {
117
+ global $current_user, $errors;
118
+ // Shortcode only works with logged in user
119
+ if(is_user_logged_in()) {
120
+ // Save
121
+ if(isset($_POST['submit']) && $_POST['submit'] && $_POST['action'] == 'update') {
122
+ do_action('wpua_update', $current_user->ID);
123
+ // Check for errors
124
+ $errors = $this->wpua_edit_user($current_user->ID);
125
+ }
126
+ // Errors
127
+ if(isset($errors) && is_wp_error($errors)) {
128
+ echo '<div class="error"><p>'.implode( "</p>\n<p>", $errors->get_error_messages()).'</p></div>';
129
+ } elseif(isset($errors) && !is_wp_error($errors)) {
130
+ echo '<div class="updated"><p><strong>'.__('Profile updated.').'</strong></p></div>';
131
+ }
132
+ // Form
133
+ echo '<form id="wpua-edit-'.$current_user->ID.'" class="wpua-edit" action="'.get_permalink().'" method="post" enctype="multipart/form-data">';
134
+ do_action('wpua_show_profile', $current_user);
135
+ echo '<input type="hidden" name="action" value="update" />';
136
+ echo '<input type="hidden" name="user_id" id="user_id" value="'.esc_attr($current_user->ID).'" />';
137
+ wp_nonce_field('update-user_'.$current_user->ID);
138
+ submit_button(__('Save'));
139
+ echo '</form>';
140
+ }
141
+ }
142
+ }
143
+
144
+ $wpua_shortcode = new WP_User_Avatar_Shortcode();
includes/class-wp-user-avatar-subscriber.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Settings only for subscribers and contributors.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ class WP_User_Avatar_Subscriber {
10
+ public function __construct() {
11
+ global $wp_user_avatar, $wpua_allow_upload;
12
+ if((bool) $wpua_allow_upload == 1) {
13
+ add_action('user_edit_form_tag', array($this, 'wpua_add_edit_form_multipart_encoding'));
14
+ // Only Subscribers lack delete_posts capability
15
+ if(!current_user_can('delete_posts') && !$wp_user_avatar->wpua_is_author_or_above()) {
16
+ add_action('admin_menu', array($this, 'wpua_subscriber_remove_menu_pages'));
17
+ add_action('wp_before_admin_bar_render', array($this, 'wpua_subscriber_remove_menu_bar_items'));
18
+ add_action('wp_dashboard_setup', array($this, 'wpua_subscriber_remove_dashboard_widgets'));
19
+ add_action('admin_init', array($this, 'wpua_subscriber_offlimits'));
20
+ }
21
+ }
22
+ add_action('admin_init', array($this, 'wpua_subscriber_capability'));
23
+ }
24
+
25
+ // Allow multipart data in form
26
+ public function wpua_add_edit_form_multipart_encoding() {
27
+ echo ' enctype="multipart/form-data"';
28
+ }
29
+
30
+ // Remove menu items
31
+ public function wpua_subscriber_remove_menu_pages() {
32
+ remove_menu_page('edit.php');
33
+ remove_menu_page('edit-comments.php');
34
+ remove_menu_page('tools.php');
35
+ }
36
+
37
+ // Remove menu bar items
38
+ public function wpua_subscriber_remove_menu_bar_items() {
39
+ global $wp_admin_bar;
40
+ $wp_admin_bar->remove_menu('comments');
41
+ $wp_admin_bar->remove_menu('new-content');
42
+ }
43
+
44
+ // Remove dashboard items
45
+ public function wpua_subscriber_remove_dashboard_widgets() {
46
+ remove_meta_box('dashboard_quick_press', 'dashboard', 'side');
47
+ remove_meta_box('dashboard_recent_drafts', 'dashboard', 'side');
48
+ remove_meta_box('dashboard_right_now', 'dashboard', 'normal');
49
+ }
50
+
51
+ // Restrict access to pages
52
+ public function wpua_subscriber_offlimits() {
53
+ global $pagenow, $wpua_edit_avatar;
54
+ $offlimits = array('edit.php', 'edit-comments.php', 'post-new.php', 'tools.php');
55
+ if((bool) $wpua_edit_avatar != 1) {
56
+ array_push($offlimits, 'post.php');
57
+ }
58
+ $offlimits = apply_filters('wpua_subscriber_offlimits', $offlimits);
59
+ if(in_array($pagenow, $offlimits)) {
60
+ do_action('admin_page_access_denied');
61
+ wp_die(__('You do not have sufficient permissions to access this page.'));
62
+ }
63
+ }
64
+
65
+ // Give subscribers edit_posts capability
66
+ public function wpua_subscriber_capability() {
67
+ global $blog_id, $wpdb, $wpua_allow_upload, $wpua_edit_avatar;;
68
+ $wp_user_roles = $wpdb->get_blog_prefix($blog_id).'user_roles';
69
+ $user_roles = get_option($wp_user_roles);
70
+ if((bool) $wpua_allow_upload == 1 && (bool) $wpua_edit_avatar == 1) {
71
+ $user_roles['subscriber']['capabilities']['edit_posts'] = true;
72
+ } else {
73
+ unset($user_roles['subscriber']['capabilities']['edit_posts']);
74
+ }
75
+ update_option($wp_user_roles, $user_roles);
76
+ }
77
+ }
78
+
79
+ // Initialize WP_User_Avatar_Subscriber
80
+ function wpua_subcriber_init() {
81
+ global $wpua_subscriber;
82
+ $wpua_subscriber = new WP_User_Avatar_Subscriber();
83
+ }
84
+ add_action('init', 'wpua_subcriber_init');
includes/class-wp-user-avatar-update.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Updates for legacy settings.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ class WP_User_Avatar_Update {
10
+ public function __construct() {
11
+ global $wpua_default_avatar_updated, $wpua_media_updated, $wpua_users_updated;
12
+ if(empty($wpua_default_avatar_updated)) {
13
+ add_action('admin_init', array($this, 'wpua_default_avatar'));
14
+ }
15
+ if(empty($wpua_users_updated)) {
16
+ add_action('admin_init', array($this, 'wpua_user_meta'));
17
+ }
18
+ if(empty($wpua_media_updated)) {
19
+ add_action('admin_init', array($this, 'wpua_media_state'));
20
+ }
21
+ }
22
+
23
+ // Update default avatar to new format
24
+ public function wpua_default_avatar() {
25
+ global $avatar_default, $mustache_original, $wpua_avatar_default;
26
+ // If default avatar is the old mustache URL, update it
27
+ if($avatar_default == $mustache_original) {
28
+ update_option('avatar_default', 'wp_user_avatar');
29
+ }
30
+ // If user had an image URL as the default avatar, replace with ID instead
31
+ if(!empty($wpua_avatar_default)) {
32
+ $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, 'medium');
33
+ if($avatar_default == $wpua_avatar_default_image[0]) {
34
+ update_option('avatar_default', 'wp_user_avatar');
35
+ }
36
+ }
37
+ update_option('wp_user_avatar_default_avatar_updated', '1');
38
+ }
39
+
40
+ // Rename user meta to match database settings
41
+ public function wpua_user_meta() {
42
+ global $blog_id, $wpdb;
43
+ $wpua_metakey = $wpdb->get_blog_prefix($blog_id).'user_avatar';
44
+ // If database tables start with something other than wp_
45
+ if($wpua_metakey != 'wp_user_avatar') {
46
+ $users = get_users();
47
+ // Move current user metakeys to new metakeys
48
+ foreach($users as $user) {
49
+ $wpua = get_user_meta($user->ID, 'wp_user_avatar', true);
50
+ if(!empty($wpua)) {
51
+ update_user_meta($user->ID, $wpua_metakey, $wpua);
52
+ delete_user_meta($user->ID, 'wp_user_avatar');
53
+ }
54
+ }
55
+ }
56
+ update_option('wp_user_avatar_users_updated', '1');
57
+ }
58
+
59
+ // Add media state to existing avatars
60
+ public function wpua_media_state() {
61
+ global $blog_id, $wpdb;
62
+ // Find all users with WPUA
63
+ $wpua_metakey = $wpdb->get_blog_prefix($blog_id).'user_avatar';
64
+ $wpuas = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->usermeta WHERE meta_key = %s AND meta_value != %d AND meta_value != %d", $wpua_metakey, 0, ""));
65
+ foreach($wpuas as $usermeta) {
66
+ add_post_meta($usermeta->meta_value, '_wp_attachment_wp_user_avatar', $usermeta->user_id);
67
+ }
68
+ update_option('wp_user_avatar_media_updated', '1');
69
+ }
70
+ }
71
+
72
+ $wpua_update = new WP_User_Avatar_Update();
includes/class-wp-user-avatar.php ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Defines all profile and upload settings.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ class WP_User_Avatar {
10
+ public function __construct() {
11
+ global $pagenow, $show_avatars, $wpua_admin, $wpua_allow_upload;
12
+ // Add WPUA to profile
13
+ if($this->wpua_is_author_or_above() || ((bool) $wpua_allow_upload == 1 && is_user_logged_in())) {
14
+ // Profile functions and scripts
15
+ add_action('show_user_profile', array('wp_user_avatar', 'wpua_action_show_user_profile'));
16
+ add_action('edit_user_profile', array('wp_user_avatar', 'wpua_action_show_user_profile'));
17
+ add_action('personal_options_update', array($this, 'wpua_action_process_option_update'));
18
+ add_action('edit_user_profile_update', array($this, 'wpua_action_process_option_update'));
19
+ // Admin scripts
20
+ $pages = array('profile.php', 'options-discussion.php', 'user-edit.php');
21
+ if(in_array($pagenow, $pages) || $wpua_admin->wpua_is_menu_page()) {
22
+ add_action('admin_enqueue_scripts', array($this, 'wpua_media_upload_scripts'));
23
+ }
24
+ // Front pages
25
+ if(!is_admin()) {
26
+ add_action('show_user_profile', array('wp_user_avatar', 'wpua_media_upload_scripts'));
27
+ add_action('edit_user_profile', array('wp_user_avatar', 'wpua_media_upload_scripts'));
28
+ }
29
+ if(!$this->wpua_is_author_or_above()) {
30
+ // Upload errors
31
+ add_action('user_profile_update_errors', array($this, 'wpua_upload_errors'), 10, 3);
32
+ // Prefilter upload size
33
+ add_filter('wp_handle_upload_prefilter', array($this, 'wpua_handle_upload_prefilter'));
34
+ }
35
+ }
36
+ add_filter('media_view_settings', array($this, 'wpua_media_view_settings'), 10, 1);
37
+ }
38
+
39
+ // Avatars have no parent posts
40
+ public function wpua_media_view_settings($settings) {
41
+ global $post, $wpua_is_profile;
42
+ // Get post ID so not to interfere with media uploads
43
+ $post_id = is_object($post) ? $post->ID : 0;
44
+ // Don't use post ID on front pages if there's a WPUA uploader
45
+ $settings['post']['id'] = (!is_admin() && $wpua_is_profile == 1) ? 0 : $post_id;
46
+ return $settings;
47
+ }
48
+
49
+ // Media Uploader
50
+ public static function wpua_media_upload_scripts($user="") {
51
+ global $current_user, $mustache_admin, $pagenow, $post, $show_avatars, $wp_user_avatar, $wpua_admin, $wpua_functions, $wpua_is_profile, $wpua_upload_size_limit;
52
+ // This is a profile page
53
+ $wpua_is_profile = true;
54
+ $user = ($pagenow == 'user-edit.php' && isset($_GET['user_id'])) ? get_user_by('id', $_GET['user_id']) : $current_user;
55
+ wp_enqueue_script('jquery');
56
+ if($wp_user_avatar->wpua_is_author_or_above()) {
57
+ wp_enqueue_script('admin-bar');
58
+ wp_enqueue_media(array('post' => $post));
59
+ wp_enqueue_script('wp-user-avatar', WPUA_URL.'js/wp-user-avatar.js', array('jquery', 'media-editor'), WPUA_VERSION, true);
60
+ } else {
61
+ wp_enqueue_script('wp-user-avatar', WPUA_URL.'js/wp-user-avatar-user.js', array('jquery'), WPUA_VERSION, true);
62
+ }
63
+ wp_enqueue_style('wp-user-avatar', WPUA_URL.'css/wp-user-avatar.css', array('media-views'), WPUA_VERSION);
64
+ // Admin scripts
65
+ if($pagenow == 'options-discussion.php' || $wpua_admin->wpua_is_menu_page()) {
66
+ // Size limit slider
67
+ wp_enqueue_script('jquery-ui-slider');
68
+ wp_enqueue_style('wp-user-avatar-jqueryui', WPUA_URL.'css/jquery.ui.slider.css', "", null);
69
+ // Remove/edit settings
70
+ $wpua_custom_scripts = array('section' => __('Default Avatar'), 'edit_image' => __('Choose Image'), 'select_image' => __('Select Image'), 'avatar_thumb' => $mustache_admin);
71
+ wp_localize_script('wp-user-avatar', 'wpua_custom', $wpua_custom_scripts);
72
+ // Settings control
73
+ wp_enqueue_script('wp-user-avatar-admin', WPUA_URL.'js/wp-user-avatar-admin.js', array('wp-user-avatar'), WPUA_VERSION, true);
74
+ $wpua_admin_scripts = array('upload_size_limit' => $wpua_upload_size_limit, 'max_upload_size' => wp_max_upload_size());
75
+ wp_localize_script('wp-user-avatar-admin', 'wpua_admin', $wpua_admin_scripts);
76
+ } else {
77
+ // User remove/edit settings
78
+ $avatar_medium_src = (bool) $show_avatars == 1 ? $wpua_functions->wpua_get_avatar_original($user->user_email, 96) : includes_url().'images/blank.gif';
79
+ $wpua_custom_scripts = array('section' => $user->display_name, 'edit_image' => __('Choose Image'), 'select_image' => __('Select Image'), 'avatar_thumb' => $avatar_medium_src);
80
+ wp_localize_script('wp-user-avatar', 'wpua_custom', $wpua_custom_scripts);
81
+ }
82
+ }
83
+
84
+ // Add to edit user profile
85
+ public static function wpua_action_show_user_profile($user) {
86
+ global $blog_id, $current_user, $show_avatars, $wpdb, $wp_user_avatar, $wpua_allow_upload, $wpua_edit_avatar, $wpua_functions, $wpua_upload_size_limit_with_units;
87
+ // Get WPUA attachment ID
88
+ $wpua = get_user_meta($user->ID, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
89
+ // Show remove button if WPUA is set
90
+ $hide_remove = !has_wp_user_avatar($user->ID) ? 'wpua-hide' : "";
91
+ // Hide image tags if show avatars is off
92
+ $hide_images = !has_wp_user_avatar($user->ID) && (bool) $show_avatars == 0 ? 'wpua-no-avatars' : "";
93
+ // If avatars are enabled, get original avatar image or show blank
94
+ $avatar_medium_src = (bool) $show_avatars == 1 ? $wpua_functions->wpua_get_avatar_original($user->user_email, 96) : includes_url().'images/blank.gif';
95
+ // Check if user has wp_user_avatar, if not show image from above
96
+ $avatar_medium = has_wp_user_avatar($user->ID) ? get_wp_user_avatar_src($user->ID, 'medium') : $avatar_medium_src;
97
+ // Check if user has wp_user_avatar, if not show image from above
98
+ $avatar_thumbnail = has_wp_user_avatar($user->ID) ? get_wp_user_avatar_src($user->ID, 96) : $avatar_medium_src;
99
+ $edit_attachment_link = add_query_arg(array('post' => $wpua, 'action' => 'edit'), admin_url('post.php'));
100
+ ?>
101
+ <?php do_action('wpua_before_avatar'); ?>
102
+ <input type="hidden" name="wp-user-avatar" id="wp-user-avatar" value="<?php echo $wpua; ?>" />
103
+ <?php if($wp_user_avatar->wpua_is_author_or_above()) : // Button to launch Media Uploader ?>
104
+ <p id="wpua-add-button"><button type="button" class="button" id="wpua-add" name="wpua-add"><?php _e('Choose Image'); ?></button></p>
105
+ <?php elseif(!$wp_user_avatar->wpua_is_author_or_above() && !has_wp_user_avatar($current_user->ID)) : // Upload button ?>
106
+ <p id="wpua-upload-button">
107
+ <input name="wpua-file" id="wpua-file" type="file" />
108
+ <button type="submit" class="button" id="wpua-upload" name="submit" value="<?php _e('Upload'); ?>"><?php _e('Upload'); ?></button>
109
+ </p>
110
+ <p id="wpua-upload-messages">
111
+ <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>
112
+ <span id="wpua-allowed-files"><?php _e('Allowed Files'); ?>: <?php _e('<code>jpg jpeg png gif</code>'); ?></span>
113
+ </p>
114
+ <?php elseif((bool) $wpua_edit_avatar == 1 && !$wp_user_avatar->wpua_is_author_or_above() && has_wp_user_avatar($current_user->ID) && $wp_user_avatar->wpua_author($wpua, $current_user->ID)) : // Edit button ?>
115
+ <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>
116
+ <?php endif; ?>
117
+ <div id="wpua-images" class="<?php echo $hide_images; ?>">
118
+ <p id="wpua-preview">
119
+ <img src="<?php echo $avatar_medium; ?>" alt="" />
120
+ <span class="description"><?php _e('Original Size'); ?></span>
121
+ </p>
122
+ <p id="wpua-thumbnail">
123
+ <img src="<?php echo $avatar_thumbnail; ?>" alt="" />
124
+ <span class="description"><?php _e('Thumbnail'); ?></span>
125
+ </p>
126
+ <p id="wpua-remove-button" class="<?php echo $hide_remove; ?>"><button type="button" class="button" id="wpua-remove" name="wpua-remove"><?php _e('Remove Image'); ?></button></p>
127
+ <p id="wpua-undo-button"><button type="button" class="button" id="wpua-undo" name="wpua-undo"><?php _e('Undo'); ?></button></p>
128
+ </div>
129
+ <?php do_action('wpua_after_avatar'); ?>
130
+ <?php
131
+ }
132
+
133
+ // Add upload error messages
134
+ public static function wpua_upload_errors($errors, $update, $user) {
135
+ global $wpua_upload_size_limit;
136
+ if($update && !empty($_FILES['wpua-file'])) {
137
+ $size = $_FILES['wpua-file']['size'];
138
+ $type = $_FILES['wpua-file']['type'];
139
+ $upload_dir = wp_upload_dir();
140
+ // Allow only JPG, GIF, PNG
141
+ if(!empty($type) && !preg_match('/(jpe?g|gif|png)$/i', $type)) {
142
+ $errors->add('wpua_file_type', __('This file is not an image. Please try another.'));
143
+ }
144
+ // Upload size limit
145
+ if(!empty($size) && $size > $wpua_upload_size_limit) {
146
+ $errors->add('wpua_file_size', __('Memory exceeded. Please try another smaller file.'));
147
+ }
148
+ // Check if directory is writeable
149
+ if(!is_writeable($upload_dir['path'])) {
150
+ $errors->add('wpua_file_directory', sprintf(__('Unable to create directory %s. Is its parent directory writable by the server?'), $upload_dir['path']));
151
+ }
152
+ }
153
+ }
154
+
155
+ // Set upload size limit
156
+ public function wpua_handle_upload_prefilter($file) {
157
+ global $wpua_upload_size_limit;
158
+ $size = $file['size'];
159
+ if(!empty($size) && $size > $wpua_upload_size_limit) {
160
+ function wpua_file_size_error($errors, $update, $user) {
161
+ $errors->add('wpua_file_size', __('Memory exceeded. Please try another smaller file.'));
162
+ }
163
+ add_action('user_profile_update_errors', 'wpua_file_size_error', 10, 3);
164
+ return;
165
+ }
166
+ return $file;
167
+ }
168
+
169
+ // Update user meta
170
+ public static function wpua_action_process_option_update($user_id) {
171
+ global $blog_id, $post, $wpdb, $wp_user_avatar, $wpua_resize_crop, $wpua_resize_h, $wpua_resize_upload, $wpua_resize_w;
172
+ // Check if user has publish_posts capability
173
+ if($wp_user_avatar->wpua_is_author_or_above()) {
174
+ $wpua_id = isset($_POST['wp-user-avatar']) ? intval($_POST['wp-user-avatar']) : "";
175
+ // Remove old attachment postmeta
176
+ delete_metadata('post', null, '_wp_attachment_wp_user_avatar', $user_id, true);
177
+ // Create new attachment postmeta
178
+ add_post_meta($wpua_id, '_wp_attachment_wp_user_avatar', $user_id);
179
+ // Update usermeta
180
+ update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', $wpua_id);
181
+ } else {
182
+ // Remove attachment info if avatar is blank
183
+ if(isset($_POST['wp-user-avatar']) && empty($_POST['wp-user-avatar'])) {
184
+ // Uploads by user
185
+ $q = array(
186
+ 'author' => $user_id,
187
+ 'post_type' => 'attachment',
188
+ 'post_status' => 'inherit',
189
+ 'posts_per_page' => '-1',
190
+ 'meta_query' => array(
191
+ array(
192
+ 'key' => '_wp_attachment_wp_user_avatar',
193
+ 'value' => '',
194
+ 'compare' => '!='
195
+ )
196
+ )
197
+ );
198
+ $avatars_wp_query = new WP_Query($q);
199
+ while($avatars_wp_query->have_posts()) : $avatars_wp_query->the_post();
200
+ wp_delete_attachment($post->ID);
201
+ endwhile;
202
+ wp_reset_query();
203
+ // Remove attachment postmeta
204
+ delete_metadata('post', null, '_wp_attachment_wp_user_avatar', $user_id, true);
205
+ // Remove usermeta
206
+ update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', "");
207
+ }
208
+ // Create attachment from upload
209
+ if(isset($_POST['submit']) && $_POST['submit'] && !empty($_FILES['wpua-file'])) {
210
+ $name = $_FILES['wpua-file']['name'];
211
+ $file = wp_handle_upload($_FILES['wpua-file'], array('test_form' => false));
212
+ $type = $_FILES['wpua-file']['type'];
213
+ $upload_dir = wp_upload_dir();
214
+ if(is_writeable($upload_dir['path'])) {
215
+ if(!empty($type) && preg_match('/(jpe?g|gif|png)$/i', $type)) {
216
+ // Resize uploaded image
217
+ if((bool) $wpua_resize_upload == 1) {
218
+ // Original image
219
+ $uploaded_image = wp_get_image_editor($file['file']);
220
+ // Check for errors
221
+ if(!is_wp_error($uploaded_image)) {
222
+ // Resize image
223
+ $uploaded_image->resize($wpua_resize_w, $wpua_resize_h, $wpua_resize_crop);
224
+ // Save image
225
+ $resized_image = $uploaded_image->save($file['file']);
226
+ }
227
+ }
228
+ // Break out file info
229
+ $name_parts = pathinfo($name);
230
+ $name = trim(substr($name, 0, -(1 + strlen($name_parts['extension']))));
231
+ $url = $file['url'];
232
+ $file = $file['file'];
233
+ $title = $name;
234
+ // Use image exif/iptc data for title if possible
235
+ if($image_meta = @wp_read_image_metadata($file)) {
236
+ if(trim($image_meta['title']) && !is_numeric(sanitize_title($image_meta['title']))) {
237
+ $title = $image_meta['title'];
238
+ }
239
+ }
240
+ // Construct the attachment array
241
+ $attachment = array(
242
+ 'guid' => $url,
243
+ 'post_mime_type' => $type,
244
+ 'post_title' => $title,
245
+ 'post_content' => ""
246
+ );
247
+ // This should never be set as it would then overwrite an existing attachment
248
+ if(isset($attachment['ID'])) {
249
+ unset($attachment['ID']);
250
+ }
251
+ // Save the attachment metadata
252
+ $attachment_id = wp_insert_attachment($attachment, $file);
253
+ if(!is_wp_error($attachment_id)) {
254
+ wp_update_attachment_metadata($attachment_id, wp_generate_attachment_metadata($attachment_id, $file));
255
+ // Remove old attachment postmeta
256
+ delete_metadata('post', null, '_wp_attachment_wp_user_avatar', $user_id, true);
257
+ // Create new attachment postmeta
258
+ update_post_meta($attachment_id, '_wp_attachment_wp_user_avatar', $user_id);
259
+ // Update usermeta
260
+ update_user_meta($user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', $attachment_id);
261
+ }
262
+ }
263
+ }
264
+ }
265
+ }
266
+ }
267
+
268
+ // Check who owns image
269
+ private function wpua_author($attachment_id, $user_id, $wpua_author=false) {
270
+ $attachment = get_post($attachment_id);
271
+ if(!empty($attachment) && $attachment->post_author == $user_id) {
272
+ $wpua_author = true;
273
+ }
274
+ return $wpua_author;
275
+ }
276
+
277
+ // Check if current user has at least Author privileges
278
+ public function wpua_is_author_or_above() {
279
+ $is_author_or_above = (current_user_can('edit_published_posts') && current_user_can('upload_files') && current_user_can('publish_posts') && current_user_can('delete_published_posts')) ? true : false;
280
+ return $is_author_or_above;
281
+ }
282
+ }
283
+
284
+ // Initialize WP_User_Avatar
285
+ function wpua_init() {
286
+ global $wp_user_avatar;
287
+ $wp_user_avatar = new WP_User_Avatar();
288
+ }
289
+ add_action('init', 'wpua_init');
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(c,d){c.addCommand('mceWpUserAvatar',function(){c.windowManager.open({file:ajaxurl+'?action=wp_user_avatar_tinymce',width:500,height:360,inline:1},{plugin_url:d})});c.addButton('wpUserAvatar',{title:'Insert WP User Avatar',cmd:'mceWpUserAvatar',image:d+'/../../images/wpua-32x32.png'});c.onNodeChange.add(function(a,b,n){b.setActive('wpUserAvatar',n.nodeName=='IMG')})},createControl:function(n,a){return null},getInfo:function(){return{longname:'WP User Avatar',author:'Bangbay Siboliban',authorurl:'http://siboliban.org/',infourl:'http://wordpress.org/plugins/wp-user-avatar/',version:"1.9"}}});tinymce.PluginManager.add('wpUserAvatar',tinymce.plugins.wpUserAvatar)})();
includes/tinymce/window.php CHANGED
@@ -1,26 +1,31 @@
1
  <?php
2
  /**
 
 
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
6
 
7
- if(!defined('ABSPATH')){
8
- die(__('You are not allowed to call this page directly.'));
9
- @header('Content-Type:'.get_option('html_type').';charset='.get_option('blog_charset'));
10
  }
11
  ?>
12
- <html xmlns="http://www.w3.org/1999/xhtml">
 
13
  <head>
14
  <title><?php _e('WP User Avatar', 'wp-user-avatar'); ?></title>
15
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
16
  <base target="_self" />
17
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/jquery/jquery.js"></script>
 
 
 
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;
25
  var size = document.getElementById('wp_user_avatar_size').value;
26
  var size_number = document.getElementById('wp_user_avatar_size_number').value;
@@ -28,102 +33,148 @@ if(!defined('ABSPATH')){
28
  var link = document.getElementById('wp_user_avatar_link').value;
29
  var link_external = document.getElementById('wp_user_avatar_link_external').value;
30
  var target = document.getElementById('wp_user_avatar_target').value;
 
31
 
32
  // Add tag to shortcode only if not blank
33
  var user_tag = (user != "") ? ' user="' + user + '"' : "";
34
  var size_tag = (size != "" && size_number == "") ? ' size="' + size + '"' : "";
35
- size_tag = (size_number != "") ? ' size="' + size_number + '"' : size_tag;
36
  var align_tag = (align != "") ? ' align="' + align + '"' : "";
37
  var link_tag = (link != "" && link != 'custom-url' && link_external == "") ? ' link="' + link + '"' : "";
38
- link_tag = (link_external != "") ? ' link="' + link_external + '"' : link_tag;
39
  var target_tag = document.getElementById('wp_user_avatar_target').checked && (link_tag != "") ? ' target="' + target + '"' : "";
40
-
41
- shortcode = "<p>[avatar" + user_tag + size_tag + align_tag + link_tag + target_tag + "]</p>";
42
 
43
- if(window.tinyMCE){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  window.tinyMCE.execInstanceCommand(window.tinyMCE.activeEditor.id, 'mceInsertContent', false, shortcode);
45
  tinyMCEPopup.editor.execCommand('mceRepaint');
46
  tinyMCEPopup.close();
47
  }
48
  return;
49
  }
50
- jQuery(function(){
51
- jQuery('#wp_user_avatar_link').change(function(){
52
- jQuery('#wp_user_avatar_link_external_section').toggle(jQuery('#wp_user_avatar_link').val() == 'custom-url');
53
  });
54
- jQuery('#wp_user_avatar_size').change(function(){
55
- jQuery('#wp_user_avatar_size_number_section').toggle(jQuery('#wp_user_avatar_size').val() == 'custom');
56
  });
 
57
  });
58
  </script>
59
  <style type="text/css">
60
- form { background: #fff; border: 1px solid #eee; }
 
 
 
 
61
  p, h4 { margin: 0; padding: 12px 0 0; }
62
  h4.center { text-align: center; }
63
- label { width: 150px; display: inline-block; text-align: right; }
64
  .mceActionPanel { padding: 7px 0 12px; text-align: center; }
65
  .mceActionPanel #insert { float: none; width: 180px; margin: 0 auto; }
66
  #wp_user_avatar_size_number_section, #wp_user_avatar_link_external_section { display: none; }
67
  </style>
68
  </head>
69
- <body id="link" class="wp-core-ui" onload="document.body.style.display="";" style="display:none;">
70
- <form name="wpUserAvatar" action="#">
71
- <p><label for="<?php esc_attr_e('wp_user_avatar_user'); ?>"><strong><?php _e('User Name'); ?>:</strong></label>
72
- <select id="<?php esc_attr_e('wp_user_avatar_user'); ?>" name="<?php esc_attr_e('wp_user_avatar_user'); ?>">
73
- <option value=""></option>
74
- <?php $users = get_users(); foreach($users as $user) : ?>
75
- <option value="<?php echo $user->user_login; ?>"><?php echo $user->display_name; ?></option>
76
- <?php endforeach; ?>
77
- </select></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
- <p>
80
- <label for="<?php esc_attr_e('wp_user_avatar_size'); ?>"><strong><?php _e('Size'); ?>:</strong></label>
81
- <select id="<?php esc_attr_e('wp_user_avatar_size'); ?>" name="<?php esc_attr_e('wp_user_avatar_size'); ?>">
82
- <option value=""></option>
83
- <option value="original"><?php _e('Original Size'); ?></option>
84
- <option value="large"><?php _e('Large'); ?></option>
85
- <option value="medium"><?php _e('Medium'); ?></option>
86
- <option value="thumbnail"><?php _e('Thumbnail'); ?></option>
87
- <option value="custom"><?php _e('Custom'); ?></option>
88
- </select>
89
- </p>
90
 
91
- <p id="<?php esc_attr_e('wp_user_avatar_size_number_section'); ?>">
92
- <label for="<?php esc_attr_e('wp_user_avatar_size_number'); ?>"><?php _e('Size'); ?></label>
93
- <input type="text" size="8" id="<?php esc_attr_e('wp_user_avatar_size_number'); ?>" name="<?php esc_attr_e('wp_user_avatar_size'); ?>" value="" />
94
- </p>
 
 
 
 
 
95
 
96
- <p><label for="<?php esc_attr_e('wp_user_avatar_align'); ?>"><strong><?php _e('Alignment'); ?>:</strong></label>
97
- <select id="<?php esc_attr_e('wp_user_avatar_align'); ?>" name="<?php esc_attr_e('wp_user_avatar_align'); ?>">
98
- <option value=""></option>
99
- <option value="center"><?php _e('Center'); ?></option>
100
- <option value="left"><?php _e('Left'); ?></option>
101
- <option value="right"><?php _e('Right'); ?></option>
102
- </select></p>
103
 
104
- <p>
105
- <label for="<?php esc_attr_e('wp_user_avatar_link'); ?>"><strong><?php _e('Link To'); ?>:</strong></label>
106
- <select id="<?php esc_attr_e('wp_user_avatar_link'); ?>" name="<?php esc_attr_e('wp_user_avatar_link'); ?>">
107
- <option value=""></option>
108
- <option value="file"><?php _e('Image File'); ?></option>
109
- <option value="attachment"><?php _e('Attachment Page'); ?></option>
110
- <option value="custom-url"><?php _e('Custom URL'); ?></option>
111
- </select>
112
- </p>
113
 
114
- <p id="<?php esc_attr_e('wp_user_avatar_link_external_section'); ?>">
115
- <label for="<?php esc_attr_e('wp_user_avatar_link_external'); ?>"><?php _e('URL'); ?></label>
116
- <input type="text" size="36" id="<?php esc_attr_e('wp_user_avatar_link_external'); ?>" name="<?php esc_attr_e('wp_user_avatar_link_external'); ?>" value="" />
117
- </p>
118
 
119
- <p>
120
- <label for="<?php esc_attr_e('wp_user_avatar_target'); ?>"></label>
121
- <input type="checkbox" id="<?php esc_attr_e('wp_user_avatar_target'); ?>" name="<?php esc_attr_e('wp_user_avatar_target'); ?>" value="_blank" /> <strong><?php _e('Open link in a new window'); ?></strong>
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>
129
  </html>
1
  <?php
2
  /**
3
+ * TinyMCE modal window.
4
+ *
5
  * @package WP User Avatar
6
+ * @version 1.9
7
  */
8
 
9
+ if(!defined('ABSPATH')) {
10
+ die('You are not allowed to call this page directly.');
 
11
  }
12
  ?>
13
+ <!DOCTYPE html>
14
+ <html>
15
  <head>
16
  <title><?php _e('WP User Avatar', 'wp-user-avatar'); ?></title>
17
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
18
  <base target="_self" />
19
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/jquery/jquery.js"></script>
20
+ <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/jquery/ui/jquery.ui.core.min.js"></script>
21
+ <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/jquery/ui/jquery.ui.widget.min.js"></script>
22
+ <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js"></script>
23
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
24
  <script type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
25
  <script type="text/javascript">
26
+ function wpuaInsertAvatar() {
27
  // Custom shortcode values
28
+ var shortcode, closing_tag;
29
  var user = document.getElementById('wp_user_avatar_user').value;
30
  var size = document.getElementById('wp_user_avatar_size').value;
31
  var size_number = document.getElementById('wp_user_avatar_size_number').value;
33
  var link = document.getElementById('wp_user_avatar_link').value;
34
  var link_external = document.getElementById('wp_user_avatar_link_external').value;
35
  var target = document.getElementById('wp_user_avatar_target').value;
36
+ var caption = document.getElementById('wp_user_avatar_caption').value;
37
 
38
  // Add tag to shortcode only if not blank
39
  var user_tag = (user != "") ? ' user="' + user + '"' : "";
40
  var size_tag = (size != "" && size_number == "") ? ' size="' + size + '"' : "";
41
+ size_tag = (size_number != "") ? ' size="' + size_number + '"' : size_tag;
42
  var align_tag = (align != "") ? ' align="' + align + '"' : "";
43
  var link_tag = (link != "" && link != 'custom-url' && link_external == "") ? ' link="' + link + '"' : "";
44
+ link_tag = (link_external != "") ? ' link="' + link_external + '"' : link_tag;
45
  var target_tag = document.getElementById('wp_user_avatar_target').checked && (link_tag != "") ? ' target="' + target + '"' : "";
 
 
46
 
47
+ // Assemble the shortcode
48
+ closing_tag = (caption != "") ? "]" + caption + "[/avatar]" : " /]";
49
+ shortcode = "<p>[avatar" + user_tag + size_tag + align_tag + link_tag + target_tag + closing_tag + "</p>";
50
+
51
+ if(window.tinyMCE) {
52
+ window.tinyMCE.execInstanceCommand(window.tinyMCE.activeEditor.id, 'mceInsertContent', false, shortcode);
53
+ tinyMCEPopup.editor.execCommand('mceRepaint');
54
+ tinyMCEPopup.close();
55
+ }
56
+ return;
57
+ }
58
+ function wpuaInsertAvatarUpload() {
59
+ // Upload shortcode
60
+ var shortcode = "<p>[avatar_upload]</p>";
61
+
62
+ if(window.tinyMCE) {
63
  window.tinyMCE.execInstanceCommand(window.tinyMCE.activeEditor.id, 'mceInsertContent', false, shortcode);
64
  tinyMCEPopup.editor.execCommand('mceRepaint');
65
  tinyMCEPopup.close();
66
  }
67
  return;
68
  }
69
+ jQuery(function($) {
70
+ $('#wp_user_avatar_link').change(function() {
71
+ $('#wp_user_avatar_link_external_section').toggle($('#wp_user_avatar_link').val() == 'custom-url');
72
  });
73
+ $('#wp_user_avatar_size').change(function() {
74
+ $('#wp_user_avatar_size_number_section').toggle($('#wp_user_avatar_size').val() == 'custom');
75
  });
76
+ $('#wpua-tabs').tabs();
77
  });
78
  </script>
79
  <style type="text/css">
80
+ ul { margin: 0; padding: 0; list-style: none; }
81
+ ul li { float: left; }
82
+ ul li a { float: left; padding: 2px 5px; background: #ddd; border: 1px solid #eee; border-bottom: 0; display: block; font-weight: 700; outline: none; text-decoration: none; }
83
+ ul li.ui-tabs-active a { background: #fff; }
84
+ form { clear: both; background: #fff; border: 1px solid #eee; }
85
  p, h4 { margin: 0; padding: 12px 0 0; }
86
  h4.center { text-align: center; }
87
+ label { width: 150px; margin-right: 3px; display: inline-block; text-align: right; vertical-align: top; }
88
  .mceActionPanel { padding: 7px 0 12px; text-align: center; }
89
  .mceActionPanel #insert { float: none; width: 180px; margin: 0 auto; }
90
  #wp_user_avatar_size_number_section, #wp_user_avatar_link_external_section { display: none; }
91
  </style>
92
  </head>
93
+ <body id="link" class="wp-core-ui" onload="document.body.style.display='';" style="display:none;">
94
+ <div id="wpua-tabs">
95
+ <ul>
96
+ <li><a href="#wpua"><?php _e('Avatar'); ?></a></li>
97
+ <li><a href="#wpua-upload"><?php _e('Upload'); ?></a></li>
98
+ </ul>
99
+ <form name="wpUserAvatar" action="#">
100
+ <div id="wpua">
101
+ <p>
102
+ <label for="<?php esc_attr_e('wp_user_avatar_user'); ?>"><strong><?php _e('User Name'); ?>:</strong></label>
103
+ <select id="<?php esc_attr_e('wp_user_avatar_user'); ?>" name="<?php esc_attr_e('wp_user_avatar_user'); ?>">
104
+ <option value=""></option>
105
+ <?php $users = get_users(); foreach($users as $user) : ?>
106
+ <option value="<?php echo $user->user_login; ?>"><?php echo $user->display_name; ?></option>
107
+ <?php endforeach; ?>
108
+ </select>
109
+ </p>
110
+
111
+ <p>
112
+ <label for="<?php esc_attr_e('wp_user_avatar_size'); ?>"><strong><?php _e('Size'); ?>:</strong></label>
113
+ <select id="<?php esc_attr_e('wp_user_avatar_size'); ?>" name="<?php esc_attr_e('wp_user_avatar_size'); ?>">
114
+ <option value=""></option>
115
+ <option value="original"><?php _e('Original Size'); ?></option>
116
+ <option value="large"><?php _e('Large'); ?></option>
117
+ <option value="medium"><?php _e('Medium'); ?></option>
118
+ <option value="thumbnail"><?php _e('Thumbnail'); ?></option>
119
+ <option value="custom"><?php _e('Custom'); ?></option>
120
+ </select>
121
+ </p>
122
+
123
+ <p id="<?php esc_attr_e('wp_user_avatar_size_number_section'); ?>">
124
+ <label for="<?php esc_attr_e('wp_user_avatar_size_number'); ?>"><?php _e('Size'); ?>:</label>
125
+ <input type="text" size="8" id="<?php esc_attr_e('wp_user_avatar_size_number'); ?>" name="<?php esc_attr_e('wp_user_avatar_size'); ?>" value="" />
126
+ </p>
127
 
128
+ <p>
129
+ <label for="<?php esc_attr_e('wp_user_avatar_align'); ?>"><strong><?php _e('Alignment'); ?>:</strong></label>
130
+ <select id="<?php esc_attr_e('wp_user_avatar_align'); ?>" name="<?php esc_attr_e('wp_user_avatar_align'); ?>">
131
+ <option value=""></option>
132
+ <option value="center"><?php _e('Center'); ?></option>
133
+ <option value="left"><?php _e('Left'); ?></option>
134
+ <option value="right"><?php _e('Right'); ?></option>
135
+ </select>
136
+ </p>
 
 
137
 
138
+ <p>
139
+ <label for="<?php esc_attr_e('wp_user_avatar_link'); ?>"><strong><?php _e('Link To'); ?>:</strong></label>
140
+ <select id="<?php esc_attr_e('wp_user_avatar_link'); ?>" name="<?php esc_attr_e('wp_user_avatar_link'); ?>">
141
+ <option value=""></option>
142
+ <option value="file"><?php _e('Image File'); ?></option>
143
+ <option value="attachment"><?php _e('Attachment Page'); ?></option>
144
+ <option value="custom-url"><?php _e('Custom URL'); ?></option>
145
+ </select>
146
+ </p>
147
 
148
+ <p id="<?php esc_attr_e('wp_user_avatar_link_external_section'); ?>">
149
+ <label for="<?php esc_attr_e('wp_user_avatar_link_external'); ?>"><?php _e('URL'); ?>:</label>
150
+ <input type="text" size="36" id="<?php esc_attr_e('wp_user_avatar_link_external'); ?>" name="<?php esc_attr_e('wp_user_avatar_link_external'); ?>" value="" />
151
+ </p>
 
 
 
152
 
153
+ <p>
154
+ <label for="<?php esc_attr_e('wp_user_avatar_target'); ?>"></label>
155
+ <input type="checkbox" id="<?php esc_attr_e('wp_user_avatar_target'); ?>" name="<?php esc_attr_e('wp_user_avatar_target'); ?>" value="_blank" /> <strong><?php _e('Open link in a new window'); ?></strong>
156
+ </p>
 
 
 
 
 
157
 
158
+ <p>
159
+ <label for="<?php esc_attr_e('wp_user_avatar_caption'); ?>"><strong><?php _e('Caption'); ?>:</strong></label>
160
+ <textarea cols="36" rows="2" id="<?php esc_attr_e('wp_user_avatar_caption'); ?>" name="<?php esc_attr_e('wp_user_avatar_size'); ?>"></textarea>
161
+ </p>
162
 
163
+ <div class="mceActionPanel">
164
+ <input type="submit" id="insert" class="button-primary" name="insert" value="<?php _e('Insert into Post'); ?>" onclick="wpuaInsertAvatar();" />
165
+ </div>
166
+ </div>
167
+ <div id="wpua-upload">
168
+ <p id="<?php esc_attr_e('wp_user_avatar_upload'); ?>">
169
+ <label for="<?php esc_attr_e('wp_user_avatar_upload'); ?>"><strong><?php _e('Upload'); ?>:</strong></label>
170
+ <input type="text" size="36" id="<?php esc_attr_e('wp_user_avatar_upload'); ?>" name="<?php esc_attr_e('wp_user_avatar_upload'); ?>" value="<?php esc_attr_e('[avatar_upload]'); ?>" readonly="readonly" />
171
+ </p>
172
 
173
+ <div class="mceActionPanel">
174
+ <input type="submit" id="insert" class="button-primary" name="insert" value="<?php _e('Insert into Post'); ?>" onclick="wpuaInsertAvatarUpload();" />
175
+ </div>
176
+ </div>
177
+ </form>
178
+ </div>
179
  </body>
180
  </html>
includes/wpua-functions.php ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Public user functions.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ function has_wp_user_avatar($id_or_email="", $has_wpua="", $user="", $user_id="") {
10
+ global $wpua_functions;
11
+ return $wpua_functions->has_wp_user_avatar($id_or_email, $has_wpua, $user, $user_id);
12
+ }
13
+
14
+ function get_wp_user_avatar($id_or_email="", $size="", $default="", $alt="") {
15
+ global $wpua_functions;
16
+ return $wpua_functions->get_wp_user_avatar($id_or_email, $size, $default, $alt);
17
+ }
18
+
19
+ function get_wp_user_avatar_src($id_or_email="", $size="", $align="") {
20
+ global $wpua_functions;
21
+ return $wpua_functions->get_wp_user_avatar_src($id_or_email, $size, $align);
22
+ }
23
+
24
+ // Before wrapper for profile
25
+ function wpua_before_avatar() {
26
+ do_action('wpua_before_avatar');
27
+ }
28
+
29
+ // After wrapper for profile
30
+ function wpua_after_avatar() {
31
+ do_action('wpua_after_avatar');
32
+ }
33
+
34
+ // Before avatar container
35
+ function wpua_do_before_avatar() {
36
+ global $wpua_functions;
37
+ ?>
38
+ <?php if(class_exists('bbPress') && bbp_is_edit()) : // Add to bbPress profile with same style ?>
39
+ <h2 class="entry-title"><?php _e('Avatar'); ?></h2>
40
+ <fieldset class="bbp-form">
41
+ <legend><?php _e('Image'); ?></legend>
42
+ <?php elseif(class_exists('WPUF_Main') && wpuf_has_shortcode('wpuf_editprofile')) : // Add to WP User Frontend profile with same style ?>
43
+ <fieldset>
44
+ <legend><?php _e('Avatar') ?></legend>
45
+ <table class="wpuf-table">
46
+ <tr>
47
+ <th><label for="wp_user_avatar"><?php _e('Image'); ?></label></th>
48
+ <td>
49
+ <?php elseif($wpua_functions->wpua_has_shortcode()) : // Add to profile without table ?>
50
+ <div class="wpua-edit-container">
51
+ <h3><?php _e('Avatar') ?></h3>
52
+ <?php else : // Add to profile with admin style ?>
53
+ <h3><?php _e('Avatar') ?></h3>
54
+ <table class="form-table">
55
+ <tr>
56
+ <th><label for="wp_user_avatar"><?php _e('Image'); ?></label></th>
57
+ <td>
58
+ <?php endif; ?>
59
+ <?php
60
+ }
61
+ add_action('wpua_before_avatar', 'wpua_do_before_avatar');
62
+
63
+ // After avatar container
64
+ function wpua_do_after_avatar() {
65
+ global $wpua_functions;
66
+ ?>
67
+ <?php if(class_exists('bbPress') && bbp_is_edit()) : // Add to bbPress profile with same style ?>
68
+ </fieldset>
69
+ <?php elseif(class_exists('WPUF_Main') && wpuf_has_shortcode('wpuf_editprofile')) : // Add to WP User Frontend profile with same style ?>
70
+ </td>
71
+ </tr>
72
+ </table>
73
+ </fieldset>
74
+ <?php elseif($wpua_functions->wpua_has_shortcode()) : // Add to profile without table ?>
75
+ </div>
76
+ <?php else : // Add to profile with admin style ?>
77
+ </td>
78
+ </tr>
79
+ </table>
80
+ <?php endif; ?>
81
+ <?php
82
+ }
83
+ add_action('wpua_after_avatar', 'wpua_do_after_avatar');
84
+
85
+ // Filter for the inevitable complaints about the donation message :(
86
+ function wpua_donation_message() {
87
+ do_action('wpua_donation_message');
88
+ }
89
+ // Donation message
90
+ function wpua_do_donation_message() { ?>
91
+ <div class="updated">
92
+ <p><?php _e('Do you like WP User Avatar?', 'wp-user-avatar'); ?> <a href="http://siboliban.org/donate" target="_blank"><?php _e('Make a donation.', 'wp-user-avatar'); ?></a></p>
93
+ </div>
94
+ <?php
95
+ }
96
+ add_action('wpua_donation_message', 'wpua_do_donation_message');
includes/wpua-globals.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Global variables used in plugin.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ // Define global variables
10
+ $avatar_default = get_option('avatar_default');
11
+ $show_avatars = get_option('show_avatars');
12
+ $wpua_allow_upload = get_option('wp_user_avatar_allow_upload');
13
+ $wpua_avatar_default = get_option('avatar_default_wp_user_avatar');
14
+ $wpua_disable_gravatar = get_option('wp_user_avatar_disable_gravatar');
15
+ $wpua_edit_avatar = get_option('wp_user_avatar_edit_avatar');
16
+ $wpua_resize_crop = get_option('wp_user_avatar_resize_crop');
17
+ $wpua_resize_h = get_option('wp_user_avatar_resize_h');
18
+ $wpua_resize_upload = get_option('wp_user_avatar_resize_upload');
19
+ $wpua_resize_w = get_option('wp_user_avatar_resize_w');
20
+ $wpua_tinymce = get_option('wp_user_avatar_tinymce');
21
+ $mustache_original = WPUA_URL.'images/wpua.png';
22
+ $mustache_medium = WPUA_URL.'images/wpua-300x300.png';
23
+ $mustache_thumbnail = WPUA_URL.'images/wpua-150x150.png';
24
+ $mustache_avatar = WPUA_URL.'images/wpua-96x96.png';
25
+ $mustache_admin = WPUA_URL.'images/wpua-32x32.png';
26
+
27
+ // Check for updates
28
+ $wpua_default_avatar_updated = get_option('wp_user_avatar_default_avatar_updated');
29
+ $wpua_users_updated = get_option('wp_user_avatar_users_updated');
30
+ $wpua_media_updated = get_option('wp_user_avatar_media_updated');
31
+
32
+ // Server upload size limit
33
+ $upload_size_limit = wp_max_upload_size();
34
+ // Convert to KB
35
+ if($upload_size_limit > 1024) {
36
+ $upload_size_limit /= 1024;
37
+ }
38
+ $upload_size_limit_with_units = (int) $upload_size_limit.'KB';
39
+
40
+ // User upload size limit
41
+ $wpua_user_upload_size_limit = get_option('wp_user_avatar_upload_size_limit');
42
+ if($wpua_user_upload_size_limit == 0 || $wpua_user_upload_size_limit > wp_max_upload_size()) {
43
+ $wpua_user_upload_size_limit = wp_max_upload_size();
44
+ }
45
+ // Value in bytes
46
+ $wpua_upload_size_limit = $wpua_user_upload_size_limit;
47
+ // Convert to KB
48
+ if($wpua_user_upload_size_limit > 1024) {
49
+ $wpua_user_upload_size_limit /= 1024;
50
+ }
51
+ $wpua_upload_size_limit_with_units = (int) $wpua_user_upload_size_limit.'KB';
52
+
53
+ // Check for custom image sizes
54
+ $all_sizes = array_merge(get_intermediate_image_sizes(), array('original'));
includes/wpua-media-page.php ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Media Library view of all avatars in use.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+ /** WordPress Administration Bootstrap */
9
+ require_once(ABSPATH.'wp-admin/admin.php');
10
+
11
+ if(!current_user_can('upload_files'))
12
+ wp_die(__('You do not have permission to upload files.'));
13
+
14
+ global $wpua_admin;
15
+
16
+ $wp_list_table = $wpua_admin->_wpua_get_list_table('WP_User_Avatar_List_Table');
17
+ $pagenum = $wp_list_table->get_pagenum();
18
+
19
+ // Handle bulk actions
20
+ $doaction = $wp_list_table->current_action();
21
+
22
+ if($doaction) {
23
+ check_admin_referer('bulk-media');
24
+
25
+ if(isset($_REQUEST['media'])) {
26
+ $post_ids = $_REQUEST['media'];
27
+ } elseif(isset($_REQUEST['ids'])) {
28
+ $post_ids = explode(',', $_REQUEST['ids']);
29
+ }
30
+
31
+ $location = esc_url(add_query_arg(array('page' => 'wp-user-avatar-library'), 'admin.php'));
32
+ if($referer = wp_get_referer()) {
33
+ if(false !== strpos($referer, 'admin.php'))
34
+ $location = remove_query_arg(array('trashed', 'untrashed', 'deleted', 'message', 'ids', 'posted'), $referer);
35
+ }
36
+ switch($doaction) {
37
+ case 'delete':
38
+ if(!isset($post_ids))
39
+ break;
40
+ foreach((array) $post_ids as $post_id_del) {
41
+ if(!current_user_can( 'delete_post', $post_id_del))
42
+ wp_die(__( 'You are not allowed to delete this post.'));
43
+ if(!wp_delete_attachment($post_id_del))
44
+ wp_die(__('Error in deleting.'));
45
+ }
46
+ $location = add_query_arg('deleted', count($post_ids), $location);
47
+ break;
48
+ }
49
+ wp_redirect($location);
50
+ exit;
51
+ } elseif(!empty($_GET['_wp_http_referer'])) {
52
+ wp_redirect(remove_query_arg(array('_wp_http_referer', '_wpnonce'), wp_unslash($_SERVER['REQUEST_URI'])));
53
+ exit;
54
+ }
55
+ $wp_list_table->prepare_items();
56
+ wp_enqueue_script('wp-ajax-response');
57
+ wp_enqueue_script('jquery-ui-draggable');
58
+ wp_enqueue_script('media');
59
+ ?>
60
+ <div class="wrap">
61
+ <h2>
62
+ <?php _e('Avatars');
63
+ if(!empty($_REQUEST['s'])) {
64
+ printf('<span class="subtitle">'.__('Search results for &#8220;%s&#8221;').'</span>', get_search_query());
65
+ }
66
+ ?>
67
+ </h2>
68
+ <?php
69
+ $message = '';
70
+ if(!empty($_GET['deleted']) && $deleted = absint($_GET['deleted'])) {
71
+ $message = sprintf(_n('Media attachment permanently deleted.', '%d media attachments permanently deleted.', $deleted), number_format_i18n($_GET['deleted']));
72
+ $_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
73
+ }
74
+ if(!empty($message)) : ?>
75
+ <div id="message" class="updated"><p><?php echo $message; ?></p></div>
76
+ <?php endif; ?>
77
+ <?php $wp_list_table->views(); ?>
78
+ <form id="posts-filter" action="" method="get">
79
+ <?php $wp_list_table->search_box(__('Search'), 'media' ); ?>
80
+ <?php $wp_list_table->display(); ?>
81
+ <div id="ajax-response"></div>
82
+ <?php find_posts_div(); ?>
83
+ <br class="clear" />
84
+ </form>
85
+ </div>
includes/wpua-options-page.php ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Admin page to change plugin options.
4
+ *
5
+ * @package WP User Avatar
6
+ * @version 1.9
7
+ */
8
+
9
+ global $show_avatars, $upload_size_limit_with_units, $wpua_admin, $wpua_allow_upload, $wpua_disable_gravatar, $wpua_edit_avatar, $wpua_resize_crop, $wpua_resize_h, $wpua_resize_upload, $wpua_resize_w, $wpua_subscriber, $wpua_tinymce, $wpua_upload_size_limit, $wpua_upload_size_limit_with_units;
10
+ $updated = false;
11
+ if(isset($_GET['settings-updated']) && $_GET['settings-updated'] == 'true') {
12
+ $updated = true;
13
+ }
14
+ $hide_size = (bool) $wpua_allow_upload != 1 ? ' style="display:none;"' : "";
15
+ $hide_resize = (bool) $wpua_resize_upload != 1 ? ' style="display:none;"' : "";
16
+ $wpua_options_page_title = _('WP User Avatar', 'wp-user-avatar');
17
+ $wpua_options_page_title = apply_filters('wpua_options_page_title', $wpua_options_page_title);
18
+ ?>
19
+
20
+ <?php if($updated) : ?>
21
+ <div id="message" class="updated"><p><strong><?php _e( 'Settings saved.' ); ?></strong></p></div>
22
+ <?php endif; ?>
23
+
24
+ <div class="wrap">
25
+ <h2><?php echo $wpua_options_page_title; ?></h2>
26
+ <form method="post" action="<?php echo admin_url('options.php'); ?>">
27
+ <?php settings_fields('wpua-settings-group'); ?>
28
+ <?php do_settings_fields('wpua-settings-group', ""); ?>
29
+ <?php do_action('wpua_donation_message'); ?>
30
+ <table class="form-table">
31
+ <?php
32
+ $wpua_before_settings = array();
33
+ $wpua_before_settings = apply_filters('wpua_before_settings', $wpua_before_settings);
34
+ echo implode("", $wpua_before_settings);
35
+ ?>
36
+ <tr valign="top">
37
+ <th scope="row"><?php _e('Settings'); ?></th>
38
+ <td>
39
+ <?php
40
+ $wpua_settings = array();
41
+ $wpua_settings['tinymce'] = '<fieldset>
42
+ <label for="wp_user_avatar_tinymce">
43
+ <input name="wp_user_avatar_tinymce" type="checkbox" id="wp_user_avatar_tinymce" value="1" '.checked($wpua_tinymce, 1, 0).' />'
44
+ .__('Add avatar button to Visual Editor', 'wp-user-avatar').'
45
+ </label>
46
+ </fieldset>';
47
+ $wpua_settings['upload'] ='<fieldset>
48
+ <label for="wp_user_avatar_allow_upload">
49
+ <input name="wp_user_avatar_allow_upload" type="checkbox" id="wp_user_avatar_allow_upload" value="1" '.checked($wpua_allow_upload, 1, 0).' />'
50
+ .__('Allow Contributors & Subscribers to upload avatars', 'wp-user-avatar').'
51
+ </label>
52
+ </fieldset>';
53
+ $wpua_settings['gravatar'] ='<fieldset>
54
+ <label for="wp_user_avatar_disable_gravatar">
55
+ <input name="wp_user_avatar_disable_gravatar" type="checkbox" id="wp_user_avatar_disable_gravatar" value="1" '.checked($wpua_disable_gravatar, 1, 0).' />'
56
+ .__('Disable Gravatar and use only local avatars', 'wp-user-avatar').'
57
+ </label>
58
+ </fieldset>';
59
+ $wpua_settings = apply_filters('wpua_settings', $wpua_settings);
60
+ echo implode("", $wpua_settings);
61
+ ?>
62
+ </td>
63
+ </tr>
64
+ </table>
65
+ <?php
66
+ $wpua_subscriber_settings = array();
67
+ $wpua_subscriber_settings['subscriber-settings'] = '<div id="wpua-contributors-subscribers"'.$hide_size.'>
68
+ <table class="form-table">
69
+ <tr valign="top">
70
+ <th scope="row">
71
+ <label for="wp_user_avatar_upload_size_limit">'
72
+ .__('Upload Size Limit', 'wp-user-avatar').' '.__('(only for Contributors & Subscribers)', 'wp-user-avatar').'
73
+ </label>
74
+ </th>
75
+ <td>
76
+ <fieldset>
77
+ <legend class="screen-reader-text"><span>'.__('Upload Size Limit', 'wp-user-avatar').' '. __('(only for Contributors & Subscribers)', 'wp-user-avatar').'</span></legend>
78
+ <input name="wp_user_avatar_upload_size_limit" type="text" id="wp_user_avatar_upload_size_limit" value="'.$wpua_upload_size_limit.'" class="regular-text" />
79
+ <span id="wpua-readable-size">'.$wpua_upload_size_limit_with_units.'</span>
80
+ <span id="wpua-readable-size-error">'.sprintf(__('%s exceeds the maximum upload size for this site.'), "").'</span>
81
+ <div id="wpua-slider"></div>
82
+ <span class="description">'.sprintf(__('Maximum upload file size: %d%s.'), esc_html(wp_max_upload_size()), esc_html(' bytes ('.$upload_size_limit_with_units.')')).'</span>
83
+ </fieldset>
84
+ <fieldset>
85
+ <label for="wp_user_avatar_edit_avatar">
86
+ <input name="wp_user_avatar_edit_avatar" type="checkbox" id="wp_user_avatar_edit_avatar" value="1" '.checked($wpua_edit_avatar, 1, 0).' />'
87
+ .__('Allow users to edit avatars', 'wp-user-avatar').'
88
+ </label>
89
+ </fieldset>
90
+ <fieldset>
91
+ <label for="wp_user_avatar_resize_upload">
92
+ <input name="wp_user_avatar_resize_upload" type="checkbox" id="wp_user_avatar_resize_upload" value="1" '.checked($wpua_resize_upload, 1, 0).' />'
93
+ .__('Resize avatars on upload', 'wp-user-avatar').'
94
+ </label>
95
+ </fieldset>
96
+ <fieldset id="wpua-resize-sizes"'.$hide_resize.'>
97
+ <label for="wp_user_avatar_resize_w">'.__('Width').'</label>
98
+ <input name="wp_user_avatar_resize_w" type="number" step="1" min="0" id="wp_user_avatar_resize_w" value="'.get_option('wp_user_avatar_resize_w').'" class="small-text" />
99
+ <label for="wp_user_avatar_resize_h">'.__('Height').'</label>
100
+ <input name="wp_user_avatar_resize_h" type="number" step="1" min="0" id="wp_user_avatar_resize_h" value="'.get_option('wp_user_avatar_resize_h').'" class="small-text" />
101
+ <br />
102
+ <input name="wp_user_avatar_resize_crop" type="checkbox" id="wp_user_avatar_resize_crop" value="1" '.checked('1', $wpua_resize_crop, 0).' />
103
+ <label for="wp_user_avatar_resize_crop">'.__('Crop avatars to exact dimensions', 'wp-user-avatar').'</label>
104
+ </fieldset>
105
+ </td>
106
+ </tr>
107
+ </table>
108
+ </div>';
109
+ $wpua_subscriber_settings = apply_filters('wpua_subscriber_settings', $wpua_subscriber_settings);
110
+ echo implode("", $wpua_subscriber_settings);
111
+ ?>
112
+ <table class="form-table">
113
+ <tr valign="top">
114
+ <th scope="row"><?php _e('Avatar Display'); ?></th>
115
+ <td>
116
+ <fieldset>
117
+ <legend class="screen-reader-text"><span><?php _e('Avatar Display'); ?></span></legend>
118
+ <label for="show_avatars">
119
+ <input type="checkbox" id="show_avatars" name="show_avatars" value="1" <?php checked($show_avatars, 1); ?> />
120
+ <?php _e('Show Avatars'); ?>
121
+ </label>
122
+ </fieldset>
123
+ </td>
124
+ </tr>
125
+ <?php if((bool) $wpua_disable_gravatar != 1) : ?>
126
+ <tr valign="top" id="avatar-rating">
127
+ <th scope="row"><?php _e('Maximum Rating'); ?></th>
128
+ <td>
129
+ <fieldset>
130
+ <legend class="screen-reader-text"><span><?php _e('Maximum Rating'); ?></span></legend>
131
+ <?php
132
+ $ratings = array(
133
+ 'G' => __('G &#8212; Suitable for all audiences'),
134
+ 'PG' => __('PG &#8212; Possibly offensive, usually for audiences 13 and above'),
135
+ 'R' => __('R &#8212; Intended for adult audiences above 17'),
136
+ 'X' => __('X &#8212; Even more mature than above')
137
+ );
138
+ foreach ($ratings as $key => $rating) :
139
+ $selected = (get_option('avatar_rating') == $key) ? 'checked="checked"' : "";
140
+ echo "\n\t<label><input type='radio' name='avatar_rating' value='" . esc_attr($key) . "' $selected/> $rating</label><br />";
141
+ endforeach;
142
+ ?>
143
+ </fieldset>
144
+ </td>
145
+ </tr>
146
+ <?php else : ?>
147
+ <input type="hidden" id="avatar_rating" name="avatar_rating" value="<?php echo get_option('avatar_rating'); ?>" />
148
+ <?php endif; ?>
149
+ <tr valign="top">
150
+ <th scope="row"><?php _e('Default Avatar') ?></th>
151
+ <td class="defaultavatarpicker">
152
+ <fieldset>
153
+ <legend class="screen-reader-text"><span><?php _e('Default Avatar'); ?></span></legend>
154
+ <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address.'); ?><br />
155
+ <?php echo $wpua_admin->wpua_add_default_avatar(); ?>
156
+ </fieldset>
157
+ </td>
158
+ </tr>
159
+ </table>
160
+ <?php submit_button(); ?>
161
+ </form>
162
+ </div>
includes/{tinymce.php → wpua-tinymce.php} RENAMED
@@ -1,21 +1,18 @@
1
  <?php
2
  /**
 
 
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
6
 
7
- if(!defined('ABSPATH')){
8
- die(__('You are not allowed to call this page directly.'));
9
- @header('Content-Type:'.get_option('html_type').';charset='.get_option('blog_charset'));
10
- }
11
-
12
- function wpua_myplugin_addbuttons(){
13
  // Don't bother doing this stuff if the current user lacks permissions
14
- if(!current_user_can('edit_posts') && !current_user_can('edit_pages')){
15
  return;
16
  }
17
  // Add only in Rich Editor mode
18
- if(get_user_option('rich_editing') == 'true'){
19
  add_filter('mce_external_plugins', 'wpua_add_myplugin_tinymce_plugin');
20
  add_filter('mce_buttons', 'wpua_register_myplugin_button');
21
  }
@@ -23,25 +20,23 @@ function wpua_myplugin_addbuttons(){
23
  // init process for button control
24
  add_action('init', 'wpua_myplugin_addbuttons');
25
 
26
-
27
- function wpua_register_myplugin_button($buttons){
28
  array_push($buttons, 'separator', 'wpUserAvatar');
29
  return $buttons;
30
  }
31
 
32
  // Load the TinyMCE plugin : editor_plugin.js (wp2.5)
33
- function wpua_add_myplugin_tinymce_plugin($plugin_array){
34
- $plugin_array['wpUserAvatar'] = WPUA_URLPATH.'includes/tinymce/editor_plugin.js';
35
  return $plugin_array;
36
  }
37
 
38
  // Call TinyMCE window content via admin-ajax
39
- function wpua_ajax_tinymce(){
40
- if(!current_user_can('edit_posts') && !current_user_can('edit_pages')){
41
  die('You are not allowed to call this page directly.');
42
  }
43
- include_once(WPUA_ABSPATH.'includes/tinymce/window.php');
44
  die();
45
  }
46
  add_action('wp_ajax_wp_user_avatar_tinymce', 'wpua_ajax_tinymce');
47
- ?>
1
  <?php
2
  /**
3
+ * TinyMCE button for Visual Editor.
4
+ *
5
  * @package WP User Avatar
6
+ * @version 1.9
7
  */
8
 
9
+ function wpua_myplugin_addbuttons() {
 
 
 
 
 
10
  // Don't bother doing this stuff if the current user lacks permissions
11
+ if(!current_user_can('edit_posts') && !current_user_can('edit_pages')) {
12
  return;
13
  }
14
  // Add only in Rich Editor mode
15
+ if(get_user_option('rich_editing') == 'true') {
16
  add_filter('mce_external_plugins', 'wpua_add_myplugin_tinymce_plugin');
17
  add_filter('mce_buttons', 'wpua_register_myplugin_button');
18
  }
20
  // init process for button control
21
  add_action('init', 'wpua_myplugin_addbuttons');
22
 
23
+ function wpua_register_myplugin_button($buttons) {
 
24
  array_push($buttons, 'separator', 'wpUserAvatar');
25
  return $buttons;
26
  }
27
 
28
  // Load the TinyMCE plugin : editor_plugin.js (wp2.5)
29
+ function wpua_add_myplugin_tinymce_plugin($plugin_array) {
30
+ $plugin_array['wpUserAvatar'] = WPUA_INC_URL.'tinymce/editor_plugin.js';
31
  return $plugin_array;
32
  }
33
 
34
  // Call TinyMCE window content via admin-ajax
35
+ function wpua_ajax_tinymce() {
36
+ if(!current_user_can('edit_posts') && !current_user_can('edit_pages')) {
37
  die('You are not allowed to call this page directly.');
38
  }
39
+ include_once(WPUA_INC.'tinymce/window.php');
40
  die();
41
  }
42
  add_action('wp_ajax_wp_user_avatar_tinymce', 'wpua_ajax_tinymce');
 
js/wp-user-avatar-admin.js CHANGED
@@ -1,37 +1,40 @@
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({
16
  value: parseInt(wpua_admin.upload_size_limit),
17
  min: 0,
18
  max: parseInt(wpua_admin.max_upload_size),
19
  step: 1,
20
- slide: function(event, ui){
21
- jQuery('#wp_user_avatar_upload_size_limit').val(ui.value);
22
- jQuery('#wpua-readable-size').html(Math.floor(ui.value / 1024) + 'KB');
23
- jQuery('#wpua-readable-size-error').hide();
24
- jQuery('#wpua-readable-size').removeClass('wpua-error');
25
  }
26
  });
27
  // Update readable size on keyup
28
- jQuery('#wp_user_avatar_upload_size_limit').keyup(function(){
29
- var wpua_upload_size_limit = jQuery(this).val();
30
- wpua_upload_size_limit = wpua_upload_size_limit.replace(/\D/g, '');
31
- jQuery(this).val(wpua_upload_size_limit);
32
- jQuery('#wpua-readable-size').html(Math.floor(wpua_upload_size_limit / 1024) + 'KB');
33
- jQuery('#wpua-readable-size-error').toggle(wpua_upload_size_limit > parseInt(wpua_admin.max_upload_size));
34
- jQuery('#wpua-readable-size').toggleClass('wpua-error', wpua_upload_size_limit > parseInt(wpua_admin.max_upload_size));
35
  });
36
- jQuery('#wp_user_avatar_upload_size_limit').val(jQuery('#wpua-slider').slider('value'));
37
  });
1
+ jQuery(function($) {
2
  // Show size info only if allow uploads is checked
3
+ $('#wp_user_avatar_allow_upload').change(function() {
4
+ $('#wpua-contributors-subscribers').slideToggle($('#wp_user_avatar_allow_upload').is(':checked'));
5
+ });
6
+ // Show resize info only if resize uploads is checked
7
+ $('#wp_user_avatar_resize_upload').change(function() {
8
+ $('#wpua-resize-sizes').slideToggle($('#wp_user_avatar_resize_upload').is(':checked'));
9
  });
10
  // Hide Gravatars if disable Gravatars is checked
11
+ $('#wp_user_avatar_disable_gravatar').change(function() {
12
+ if($('#wp-avatars').length) {
13
+ $('#wp-avatars, #avatar-rating').slideToggle(!$('#wp_user_avatar_disable_gravatar').is(':checked'));
14
+ $('#wp_user_avatar_radio').trigger('click');
15
  }
 
16
  });
17
  // Add size slider
18
+ $('#wpua-slider').slider({
19
  value: parseInt(wpua_admin.upload_size_limit),
20
  min: 0,
21
  max: parseInt(wpua_admin.max_upload_size),
22
  step: 1,
23
+ slide: function(event, ui) {
24
+ $('#wp_user_avatar_upload_size_limit').val(ui.value);
25
+ $('#wpua-readable-size').html(Math.floor(ui.value / 1024) + 'KB');
26
+ $('#wpua-readable-size-error').hide();
27
+ $('#wpua-readable-size').removeClass('wpua-error');
28
  }
29
  });
30
  // Update readable size on keyup
31
+ $('#wp_user_avatar_upload_size_limit').keyup(function() {
32
+ var wpuaUploadSizeLimit = $(this).val();
33
+ wpuaUploadSizeLimit = wpuaUploadSizeLimit.replace(/\D/g, '');
34
+ $(this).val(wpuaUploadSizeLimit);
35
+ $('#wpua-readable-size').html(Math.floor(wpuaUploadSizeLimit / 1024) + 'KB');
36
+ $('#wpua-readable-size-error').toggle(wpuaUploadSizeLimit > parseInt(wpua_admin.max_upload_size));
37
+ $('#wpua-readable-size').toggleClass('wpua-error', wpuaUploadSizeLimit > parseInt(wpua_admin.max_upload_size));
38
  });
39
+ $('#wp_user_avatar_upload_size_limit').val($('#wpua-slider').slider('value'));
40
  });
js/wp-user-avatar-user.js ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(function($) {
2
+ // Add enctype to form with JavaScript as backup
3
+ $('#your-profile').attr('enctype', 'multipart/form-data');
4
+ // Store WP User Avatar ID
5
+ var wpuaID = $('#wp-user-avatar').val();
6
+ // Store WP User Avatar src
7
+ var wpuaSrc = $('#wpua-preview').find('img').attr('src');
8
+ // Remove WP User Avatar
9
+ $('body').on('click', '#wpua-remove', function(e) {
10
+ e.preventDefault();
11
+ $('#wpua-original').remove();
12
+ $('#wpua-remove-button, #wpua-thumbnail').hide();
13
+ $('#wpua-preview').find('img:first').hide();
14
+ $('#wpua-preview').prepend('<img id="wpua-original" height="98" />');
15
+ $('#wpua-original').attr('src', wpua_custom.avatar_thumb);
16
+ $('#wp-user-avatar').val("");
17
+ $('#wpua-original, #wpua-undo-button').show();
18
+ $('#wp_user_avatar_radio').trigger('click');
19
+ });
20
+ // Undo WP User Avatar
21
+ $('body').on('click', '#wpua-undo', function(e) {
22
+ e.preventDefault();
23
+ $('#wpua-original').remove();
24
+ $('#wpua-images').removeAttr('style');
25
+ $('#wpua-undo-button').hide();
26
+ $('#wpua-remove-button, #wpua-thumbnail').show();
27
+ $('#wpua-preview').find('img:first').attr('src', wpuaSrc).show();
28
+ $('#wp-user-avatar').val(wpuaID);
29
+ $('#wp_user_avatar_radio').trigger('click');
30
+ });
31
+ });
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
+ eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('5 Z(c,d,f){2.6.u={Q:5(){M 2.6.U.W.i.G},12:5(a){C b=2.6.U.W;b.i.G=a;b.i.I=4(\'11.k-17\').l(\'m\').n(\'t\');H(b.i.G&&b.i.I){4(\'#2-r-z\',8.h.g).v(b.i.G);4(\'#0-T\',8.h.g).x();4(\'#0-y\',8.h.g).l(\'m\').n(\'t\',b.i.I).X(\'13\',"");4(\'#0-B-o\',8.h.g).x();4(\'#0-j-o\',8.h.g).w();4(\'#0-K\',8.h.g).w();4(\'#L\',8.h.g).F(\'9\')}2.6.u.O().1z()},O:5(){H(3.7){M 3.7}3.7=2.6({R:\'S\',15:[1D 2.6.19.1b({1e:d+": "+c,S:2.6.1i(1j.1k({1l:\'1v\'}))})]});3.7.p(\'V\',5(){s=4(\'#2-r-z\').v();H(s==""){4(\'11.6-16\').l(\'a:N\').F(\'9\')}18{C a=3.R().Q(\'q\');k=2.6.k(s);k.1a();a.Y(k?[k]:[])}},3.7);3.7.p(\'1c:1d:E\',5(a){3.1f(a,{1g:f})},3.7);3.7.R(\'S\').p(\'E\',3.E);M 3.7},E:5(a){q=3.Q(\'q\').1h();2.6.u.12(q?q.s:-1)},10:5(){4(\'P\').p(\'9\',\'#0-Y\',5(e){e.J();e.1m();2.6.u.O().V()})}};4(2.6.u.10)}4(5($){$(\'#1n-1o\').n(\'1p\',\'1q/1r-1s\');H(1t(2)!=\'1u\'){Z(D.1w,D.1x,D.1y)}C a=$(\'#2-r-z\').v();C b=$(\'#0-y\').l(\'m\').n(\'t\');$(\'P\').p(\'9\',\'#0-j\',5(e){e.J();$(\'#0-A\').j();$(\'#0-j-o, #0-K\').w();$(\'#0-y\').l(\'m:N\').w();$(\'#0-y\').1A(\'<m s="0-A" 13="1B" />\');$(\'#0-A\').n(\'t\',D.1C);$(\'#2-r-z\').v("");$(\'#0-A, #0-B-o\').x();$(\'#L\').F(\'9\')});$(\'P\').p(\'9\',\'#0-B\',5(e){e.J();$(\'#0-A\').j();$(\'#0-T\').X(\'14\');$(\'#0-B-o\').w();$(\'#0-j-o, #0-K\').x();$(\'#0-y\').l(\'m:N\').n(\'t\',b).x();$(\'#2-r-z\').v(a);$(\'#L\').F(\'9\')})});',62,102,'wpua||wp|this|jQuery|function|media|_frame|window|click|||||||document|parent|post|remove|attachment|find|img|attr|button|on|selection|user|id|src|wpUserAvatar|val|hide|show|preview|avatar|original|undo|var|wpua_custom|select|trigger|wpUserAvatarId|if|wpUserAvatarSrc|preventDefault|thumbnail|wp_user_avatar_radio|return|first|frame|body|get|state|library|images|view|open|settings|removeAttr|add|wpuaMediaUploader|init|div|set|height|style|states|router|info|else|controller|fetch|Library|toolbar|create|title|createSelectToolbar|text|single|query|_|defaults|type|stopPropagation|your|profile|enctype|multipart|form|data|typeof|undefined|image|section|edit_image|select_image|close|prepend|98|avatar_thumb|new'.split('|'),0,{}))
lang/wp-user-avatar-de_DE.mo CHANGED
Binary file
lang/wp-user-avatar-de_DE.po CHANGED
@@ -1,12 +1,12 @@
1
  # German (de_DE) translation for WP User Avatar.
2
- # Copyright (C) 2013 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
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,52 @@ 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"
1
  # German (de_DE) translation for WP User Avatar.
2
+ # Copyright (C) 2014 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.9\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2014-03-24 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
+ #: includes/class-wp-user-avatar-admin.php:208
18
+ msgid "Donate"
19
+ msgstr "Spenden"
 
20
 
21
+ #: includes/wpua-functions.php:92
22
+ msgid "Do you like WP User Avatar?"
23
+ msgstr "Bist Du mit WP-Benutzer-Avatar zufrieden?"
24
+
25
+ #: includes/wpua-functions.php:92
26
+ msgid "Make a donation."
27
+ msgstr "Spenden"
28
+
29
+ #: includes/wpua-options-page.php:44
30
  msgid "Add avatar button to Visual Editor"
31
  msgstr "Einen Avatar-Knopf zum WYSIWYG-Editor hinzufügen"
32
 
33
+ #: includes/wpua-options-page.php:50
34
  msgid "Allow Contributors & Subscribers to upload avatars"
35
  msgstr "Mitarbeiter und Abonnenten erlauben, Avatare hochzuladen"
36
 
37
+ #: includes/wpua-options-page.php:56
38
  msgid "Disable Gravatar and use only local avatars"
39
  msgstr "Gravatar deaktivieren und nur lokale Avatare verwenden"
40
 
41
+ #: includes/wpua-options-page.php:72
42
+ #: includes/wpua-options-page.php:77
43
+ msgid "Upload Size Limit"
44
+ msgstr "Dateigrößenbeschränkung"
45
+
46
+ #: includes/wpua-options-page.php:72
47
+ #: includes/wpua-options-page.php:77
48
+ msgid "(only for Contributors & Subscribers)"
49
+ msgstr "(nur für Mitarbeiter und Abonnenten)"
50
 
51
+ #: includes/wpua-options-page.php:87
52
  msgid "Allow users to edit avatars"
53
  msgstr "Benutzer erlauben, Avatare bearbeiten"
54
 
55
+ #: includes/wpua-options-page.php:93
56
+ msgid "Resize avatars on upload"
57
+ msgstr "Resize Avatare beim Upload"
58
+
59
+ #: includes/wpua-options-page.php:103
60
+ msgid "Crop avatars to exact dimensions"
61
+ msgstr "Avatare auf exakte Größe beschneiden"
62
+
63
  #. Plugin Name of the plugin/theme
64
  msgid "WP User Avatar"
65
  msgstr "WP-Benutzer-Avatar"
lang/wp-user-avatar-es_ES.mo CHANGED
Binary file
lang/wp-user-avatar-es_ES.po CHANGED
@@ -1,12 +1,12 @@
1
  # Spanish (es_ES) translation for WP User Avatar.
2
- # Copyright (C) 2013 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
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,52 @@ 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"
1
  # Spanish (es_ES) translation for WP User Avatar.
2
+ # Copyright (C) 2014 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.9\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2014-03-24 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
+ #: includes/class-wp-user-avatar-admin.php:208
18
+ msgid "Donate"
19
+ msgstr "Donar"
 
20
 
21
+ #: includes/wpua-functions.php:92
22
+ msgid "Do you like WP User Avatar?"
23
+ msgstr "¿Está satisfecho con WP-Usuario-Avatar?"
24
+
25
+ #: includes/wpua-functions.php:92
26
+ msgid "Make a donation."
27
+ msgstr "Donar"
28
+
29
+ #: includes/wpua-options-page.php:44
30
  msgid "Add avatar button to Visual Editor"
31
  msgstr "Añadir botón avatar al editor visual"
32
 
33
+ #: includes/wpua-options-page.php:50
34
  msgid "Allow Contributors & Subscribers to upload avatars"
35
  msgstr "Permitir los colaboradores y los suscriptores subir avatares"
36
 
37
+ #: includes/wpua-options-page.php:56
38
  msgid "Disable Gravatar and use only local avatars"
39
  msgstr "Desactivar Gravatar y utilizar sólo los avatares locales"
40
 
41
+ #: includes/wpua-options-page.php:72
42
+ #: includes/wpua-options-page.php:77
43
+ msgid "Upload Size Limit"
44
+ msgstr "Sube límite de tamaño"
45
+
46
+ #: includes/wpua-options-page.php:72
47
+ #: includes/wpua-options-page.php:77
48
+ msgid "(only for Contributors & Subscribers)"
49
+ msgstr "(para colaboradores y suscriptores)"
50
 
51
+ #: includes/wpua-options-page.php:87
52
  msgid "Allow users to edit avatars"
53
  msgstr "Permitir a los usuarios editar avatar"
54
 
55
+ #: includes/wpua-options-page.php:93
56
+ msgid "Resize avatars on upload"
57
+ msgstr "Cambiar el tamaño de avatares en carga"
58
+
59
+ #: includes/wpua-options-page.php:103
60
+ msgid "Crop avatars to exact dimensions"
61
+ msgstr "Recortar los avatares a sus dimensiones exactas"
62
+
63
  #. Plugin Name of the plugin/theme
64
  msgid "WP User Avatar"
65
  msgstr "WP-Usuario-Avatar"
lang/wp-user-avatar-fr_FR.mo CHANGED
Binary file
lang/wp-user-avatar-fr_FR.po CHANGED
@@ -1,12 +1,12 @@
1
  # French (fr_FR) translation for WP User Avatar.
2
- # Copyright (C) 2013 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
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,52 @@ 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"
1
  # French (fr_FR) translation for WP User Avatar.
2
+ # Copyright (C) 2014 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.9\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2014-03-24 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
+ #: includes/class-wp-user-avatar-admin.php:208
18
+ msgid "Donate"
19
+ msgstr "Faites un don"
 
20
 
21
+ #: includes/wpua-functions.php:92
22
+ msgid "Do you like WP User Avatar?"
23
+ msgstr "Etes-vous satisfait avec WP-Utilisateur-Avatar?"
24
+
25
+ #: includes/wpua-functions.php:92
26
+ msgid "Make a donation."
27
+ msgstr "Faites un don"
28
+
29
+ #: includes/wpua-options-page.php:44
30
  msgid "Add avatar button to Visual Editor"
31
  msgstr "Ajouter le bouton avatar sur l'éditeur visuel"
32
 
33
+ #: includes/wpua-options-page.php:50
34
  msgid "Allow Contributors & Subscribers to upload avatars"
35
  msgstr "Permettre aux contributeurs et aux abonnés d'envoyer des avatars"
36
 
37
+ #: includes/wpua-options-page.php:56
38
  msgid "Disable Gravatar and use only local avatars"
39
  msgstr "Désactiver Gravatar et utiliser les avatars fournis"
40
 
41
+ #: includes/wpua-options-page.php:72
42
+ #: includes/wpua-options-page.php:77
43
+ msgid "Upload Size Limit"
44
+ msgstr "Taille limite d'envoi de fichiers"
45
+
46
+ #: includes/wpua-options-page.php:72
47
+ #: includes/wpua-options-page.php:77
48
+ msgid "(only for Contributors & Subscribers)"
49
+ msgstr "(pour contributeurs et abonnés)"
50
 
51
+ #: includes/wpua-options-page.php:87
52
  msgid "Allow users to edit avatars"
53
  msgstr "Permettre aux utilisateurs de modifier avatar"
54
 
55
+ #: includes/wpua-options-page.php:93
56
+ msgid "Resize avatars on upload"
57
+ msgstr "Redimensionner avatars lors du téléchargement"
58
+
59
+ #: includes/wpua-options-page.php:103
60
+ msgid "Crop avatars to exact dimensions"
61
+ msgstr "Recadrer les avatars pour parvenir aux dimensions exactes"
62
+
63
  #. Plugin Name of the plugin/theme
64
  msgid "WP User Avatar"
65
  msgstr "WP-Utilisateur-Avatar"
lang/wp-user-avatar-pl_PL.mo ADDED
Binary file
lang/wp-user-avatar-pl_PL.po ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Polish (pl_PL) translation for WP User Avatar.
2
+ # Copyright (C) 2014 Bangbay Siboliban.
3
+ # This file is distributed under the same license as the WP User Avatar package.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.9\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2014-03-24 00:00-0000\n"
10
+ "Language: de_DE\n"
11
+ "Last-Translator: WP User Avatar\n"
12
+ "Language-Team: WP User Avatar\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+
17
+ #: includes/class-wp-user-avatar-admin.php:208
18
+ msgid "Donate"
19
+ msgstr "Dotuj"
20
+
21
+ #: includes/wpua-functions.php:92
22
+ msgid "Do you like WP User Avatar?"
23
+ msgstr "Jesteś zadowolony z Wp User Avatar"
24
+
25
+ #: includes/wpua-functions.php:92
26
+ msgid "Make a donation."
27
+ msgstr "Dokonaj dotacji"
28
+
29
+ #: includes/wpua-options-page.php:44
30
+ msgid "Add avatar button to Visual Editor"
31
+ msgstr "Dodaj przycisk avatara do edytora wizualnego"
32
+
33
+ #: includes/wpua-options-page.php:50
34
+ msgid "Allow Contributors & Subscribers to upload avatars"
35
+ msgstr "Pozwalaj kontrybutorom oraz subskrynentom przesyłać awatary"
36
+
37
+ #: includes/wpua-options-page.php:56
38
+ msgid "Disable Gravatar and use only local avatars"
39
+ msgstr "Wyłącz gravatary i używaj tylko lokalnych awatarów"
40
+
41
+ #: includes/wpua-options-page.php:72
42
+ #: includes/wpua-options-page.php:77
43
+ msgid "Upload Size Limit"
44
+ msgstr "Limit wielkości pliku"
45
+
46
+ #: includes/wpua-options-page.php:72
47
+ #: includes/wpua-options-page.php:77
48
+ msgid "(only for Contributors & Subscribers)"
49
+ msgstr "(tylko dla subskrynentów i kontrybutorów)"
50
+
51
+ #: includes/wpua-options-page.php:87
52
+ msgid "Allow users to edit avatars"
53
+ msgstr "Pozwalaj użytkownikom edytować awatary"
54
+
55
+ #: includes/wpua-options-page.php:93
56
+ msgid "Resize avatars on upload"
57
+ msgstr "Zmieniaj rozmiar po przesłaniu"
58
+
59
+ #: includes/wpua-options-page.php:103
60
+ msgid "Crop avatars to exact dimensions"
61
+ msgstr "Przytnij awatar do dokładnych rozmiarów"
62
+
63
+ #. Plugin Name of the plugin/theme
64
+ msgid "WP User Avatar"
65
+ msgstr "WP Awatar Użytkownika"
66
+
67
+ #. Plugin URI of the plugin/theme
68
+ msgid "http://wordpress.org/plugins/wp-user-avatar/"
69
+ msgstr "http://wordpress.org/plugins/wp-user-avatar/"
70
+
71
+ #. Description of the plugin/theme
72
+ msgid "Use any image from your WordPress Media Library as a custom user avatar. Add your own Default Avatar."
73
+ msgstr "Użyj dowolnego obrazka z biblioteki mediów jako awatar użytkownika. Dodaj swój własny domyślny awatar."
74
+
75
+ #. Author of the plugin/theme
76
+ msgid "Bangbay Siboliban"
77
+ msgstr "Bangbay Siboliban"
78
+
79
+ #. Author URI of the plugin/theme
80
+ msgid "http://siboliban.org/"
81
+ msgstr "http://siboliban.org/"
lang/wp-user-avatar-sv_SE.mo CHANGED
Binary file
lang/wp-user-avatar-sv_SE.po CHANGED
@@ -1,12 +1,12 @@
1
  # Swedish (sv_SE) translation for WP User Avatar.
2
- # Copyright (C) 2013 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
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,52 @@ 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)"
1
  # Swedish (sv_SE) translation for WP User Avatar.
2
+ # Copyright (C) 2014 Bangbay Siboliban.
3
  # This file is distributed under the same license as the WP User Avatar package.
4
  #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP User Avatar 1.9\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/wp-user-avatar/\n"
9
+ "PO-Revision-Date: 2014-03-24 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
+ #: includes/class-wp-user-avatar-admin.php:208
18
+ msgid "Donate"
19
+ msgstr "Donera"
 
20
 
21
+ #: includes/wpua-functions.php:92
22
+ msgid "Do you like WP User Avatar?"
23
+ msgstr "Är du nöjd med Visningsbild (avatar)?"
24
+
25
+ #: includes/wpua-functions.php:92
26
+ msgid "Make a donation."
27
+ msgstr "Donera"
28
+
29
+ #: includes/wpua-options-page.php:44
30
  msgid "Add avatar button to Visual Editor"
31
  msgstr "Lägg till knapp för avatarer i den visuella redigeraren"
32
 
33
+ #: includes/wpua-options-page.php:50
34
  msgid "Allow Contributors & Subscribers to upload avatars"
35
  msgstr "Tillåt medarbetare & prenumeranter att ladda upp avatarer"
36
 
37
+ #: includes/wpua-options-page.php:56
38
  msgid "Disable Gravatar and use only local avatars"
39
  msgstr "Inaktivera Gravatar och använd endast lokala avatarer"
40
 
41
+ #: includes/wpua-options-page.php:72
42
+ #: includes/wpua-options-page.php:77
43
+ msgid "Upload Size Limit"
44
+ msgstr "Storleksgräns för uppladdningar"
45
+
46
+ #: includes/wpua-options-page.php:72
47
+ #: includes/wpua-options-page.php:77
48
+ msgid "(only for Contributors & Subscribers)"
49
+ msgstr "(endast för medarbetare & prenumeranter)"
50
 
51
+ #: includes/wpua-options-page.php:87
52
  msgid "Allow users to edit avatars"
53
  msgstr "Tillåt användare att redigera avatarer"
54
 
55
+ #: includes/wpua-options-page.php:93
56
+ msgid "Resize avatars on upload"
57
+ msgstr "Ändra storlek på avatarer på uppladdning"
58
+
59
+ #: includes/wpua-options-page.php:103
60
+ msgid "Crop avatars to exact dimensions"
61
+ msgstr "Beskär avatarer till exakta dimensioner"
62
+
63
  #. Plugin Name of the plugin/theme
64
  msgid "WP User Avatar"
65
  msgstr "Visningsbild (avatar)"
readme.txt CHANGED
@@ -3,9 +3,9 @@
3
  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
 
@@ -13,16 +13,17 @@ Use any image from your WordPress Media Library as a custom user avatar. Add you
13
 
14
  == Description ==
15
 
16
- WordPress currently only allows you to use custom avatars that are uploaded through [Gravatar](http://gravatar.com/). WP User Avatar enables you to use any photo uploaded into your Media Library as an avatar. This means you use the same uploader and library as your posts. No extra folders or image editing functions are necessary.
17
 
18
- WP User Avatar also lets you:
19
 
20
  * Upload your own Default Avatar in your WP User Avatar settings.
21
  * Show the user's [Gravatar](http://gravatar.com/) avatar or Default Avatar if the user doesn't have a WP User Avatar image.
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
 
@@ -32,7 +33,7 @@ WP User Avatar also lets you:
32
  4. Click "Update Profile".
33
  5. Upload your own Default Avatar in your WP User Avatar settings (optional). You can also allow Contributors & Subscribers to upload avatars and disable Gravatar.
34
  6. Choose a theme that has avatar support. In your theme, manually replace <code>get_avatar</code> with <code>get_wp_user_avatar</code> or leave <code>get_avatar</code> as-is. [Read about the differences here](http://wordpress.org/extend/plugins/wp-user-avatar/faq/).
35
- 7. You can also use the <code>[avatar]</code> shortcode in your posts. The shortcode will work with any theme, whether it has avatar support or not.
36
 
37
  **Example Usage**
38
 
@@ -90,11 +91,21 @@ For comments, you must specify the $comment variable.
90
 
91
  **Other Available Functions**
92
 
 
 
 
 
93
  = [avatar] shortcode =
94
 
95
  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.
96
 
97
- `[avatar user="admin" size="medium" align="left" link="file"]`
 
 
 
 
 
 
98
 
99
  = get_wp_user_avatar_src =
100
 
@@ -126,9 +137,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 +155,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 +166,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 +182,37 @@ 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:
@@ -206,7 +241,7 @@ If you use the <code>[avatar]</code> shortcode, WP User Avatar will add the CSS
206
  * Attachment: wp-user-avatar-attachment
207
  * Custom URL: wp-user-avatar-custom
208
 
209
- `[avatar user="admin" size="96" align="left" link="attachment"]`
210
 
211
  Outputs:
212
 
@@ -219,19 +254,236 @@ 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.
225
  2. WP User Avatar lets you upload your own Default Avatar.
226
  3. WP User Avatar adds a field to your profile edit page.
227
  4. After you've chosen a WP User Avatar image, you will see the option to remove it.
228
- 5. WP User Avatar adds a button to insert the [avatar] shortcode in the Visual Editor.
229
- 6. Options for the [avatar] shortcode.
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 +515,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+
@@ -323,7 +575,7 @@ Outputs:
323
  = 1.2 =
324
  * Add: Default Avatar setting
325
 
326
- = 1.1.7 =
327
  * Bug Fix: Change update_usermeta to update_user_meta
328
 
329
  = 1.1.6 =
@@ -367,6 +619,10 @@ Outputs:
367
 
368
  == Upgrade Notice ==
369
 
 
 
 
 
370
  = 1.5.3 =
371
  * Notice: WP User Avatar 1.5.3 only supports WordPress 3.5 and above. If you are using an older version of WordPress, please upgrade your version of WordPress first.
372
 
3
  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.6
7
+ Tested up to: 3.8.1
8
+ Stable tag: 1.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
13
 
14
  == Description ==
15
 
16
+ WordPress currently only allows you to use custom avatars that are uploaded through [Gravatar](http://gravatar.com/). **WP User Avatar** enables you to use any photo uploaded into your Media Library as an avatar. This means you use the same uploader and library as your posts. No extra folders or image editing functions are necessary.
17
 
18
+ **WP User Avatar** also lets you:
19
 
20
  * Upload your own Default Avatar in your WP User Avatar settings.
21
  * Show the user's [Gravatar](http://gravatar.com/) avatar or Default Avatar if the user doesn't have a WP User Avatar image.
22
  * Disable [Gravatar](http://gravatar.com/) avatars and use only local avatars.
23
+ * Use the <code>[avatar_upload]</code> shortcode to add a standalone uploader to a front page. This uploader is only visible to logged-in users.
24
+ * Use the <code>[avatar]</code> shortcode in your posts. These shortcodes will work with any theme, whether it has avatar support or not.
25
  * Allow Contributors and Subscribers to upload their own avatars.
26
+ * Limit upload file size and image dimensions for Contributors and Subscribers.
27
 
28
  == Installation ==
29
 
33
  4. Click "Update Profile".
34
  5. Upload your own Default Avatar in your WP User Avatar settings (optional). You can also allow Contributors & Subscribers to upload avatars and disable Gravatar.
35
  6. Choose a theme that has avatar support. In your theme, manually replace <code>get_avatar</code> with <code>get_wp_user_avatar</code> or leave <code>get_avatar</code> as-is. [Read about the differences here](http://wordpress.org/extend/plugins/wp-user-avatar/faq/).
36
+ 7. You can also use the <code>[avatar_upload]</code> and <code>[avatar]</code> shortcodes in your posts. These shortcodes will work with any theme, whether it has avatar support or not.
37
 
38
  **Example Usage**
39
 
91
 
92
  **Other Available Functions**
93
 
94
+ = [avatar_upload] shortcode =
95
+
96
+ You can use the <code>[avatar_upload]</code> shortcode to add a standalone uploader to a front page. This uploader is only visible to logged-in users. If you want to integrate the uploader into a profile edit page, see [Other Notes](http://wordpress.org/plugins/wp-user-avatar/other_notes/).
97
+
98
  = [avatar] shortcode =
99
 
100
  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.
101
 
102
+ `[avatar user="admin" size="medium" align="left" link="file" /]`
103
+
104
+ You can also add a caption to the shortcode:
105
+
106
+ `[avatar user="admin" size="medium" align="left" link="file"]Photo Credit: Your Name[/avatar]`
107
+
108
+ **Note:** If you are using one shortcode without a caption and another shortcode with a caption on the same page, you must close the caption-less shortcode with a forward slash before the closing bracket: <code>[avatar /]</code> instead of <code>[avatar]</code>
109
 
110
  = get_wp_user_avatar_src =
111
 
137
 
138
  1. Allows you to use the values "original", "large", "medium", or "thumbnail" for your avatar size.
139
  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.
140
+ 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).
141
+ 4. Optionally adds CSS classes "alignleft", "alignright", or "aligncenter" to position your avatar.
142
+ 5. Shows nothing if the user has no WP User Avatar image.
143
+ 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.
144
 
145
  = get_avatar =
146
 
155
  = Can I create a custom Default Avatar? =
156
  In your WP User Avatar settings, you can upload your own Default Avatar.
157
 
158
+ = Can I disable all Gravatar avatars? =
 
 
 
 
 
 
159
 
160
+ 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.
 
 
161
 
162
  = Can Contributors or Subscribers choose their own WP User Avatar image? =
163
  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.
166
 
167
  Yes, for registered users. Non-registered comment authors will show their [Gravatar](http://gravatar.com/) avatars or Default Avatar.
168
 
 
 
 
 
169
  = Will WP User Avatar work with bbPress? =
170
 
171
  Yes!
172
 
173
+ = Will WP User Avatar work with BuddyPress? =
174
+
175
+ 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.
176
+
177
  = Will WP User Avatar work with WordPress Multisite? =
178
 
179
  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.
182
 
183
  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.
184
 
185
+ = Can I use the WP User Avatar uploader in a front page? =
186
+
187
+ Yes, you can use the <code>[avatar_upload]</code> shortcode to put a standalone uploader in a front page. This uploader is only visible to logged-in users. If you want to integrate the uploader into a profile edit page, see [Other Notes](http://wordpress.org/plugins/wp-user-avatar/other_notes/).
188
+
189
+ = Can I insert WP User Avatar directly into a post? =
190
+
191
+ 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.
192
+
193
+ `[avatar user="admin" size="96" align="left" link="file" /]`
194
+
195
+ Outputs:
196
+
197
+ `<a href="{fileURL}" class="wp-user-avatar-link wp-user-avatar-file">
198
+ <img src="{imageURL}" width="96" height="96" class="wp-user-avatar wp-user-avatar-96 alignleft" />
199
+ </a>`
200
+
201
+ If you have a caption, the output will be similar to how WordPress adds captions to other images.
202
+
203
+ `[avatar user="admin" size="96" align="left" link="file"]Photo Credit: Your Name[/avatar]`
204
+
205
+ Outputs:
206
+
207
+ `<div style="width: 106px" class="wp-caption alignleft">
208
+ <a href="{fileURL}" class="wp-user-avatar-link wp-user-avatar-file">
209
+ <img src="{imageURL}" width="96" height="96" class="wp-user-avatar wp-user-avatar-96" />
210
+ </a>
211
+ <p class="wp-caption-text">Photo Credit: Your Name</p>
212
+ </div>`
213
+
214
+ **Note:** If you are using one shortcode without a caption and another shortcode with a caption on the same page, you must close the caption-less shortcode with a forward slash before the closing bracket: <code>[avatar /]</code> instead of <code>[avatar]</code>
215
+
216
  = What CSS can I use with WP User Avatar? =
217
 
218
  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:
241
  * Attachment: wp-user-avatar-attachment
242
  * Custom URL: wp-user-avatar-custom
243
 
244
+ `[avatar user="admin" size="96" align="left" link="attachment" /]`
245
 
246
  Outputs:
247
 
254
  * <code>has_wp_user_avatar</code>: checks if the user has a WP User Avatar image
255
  * [See example usage here](http://wordpress.org/extend/plugins/wp-user-avatar/installation/)
256
 
257
+ = There's a call for donations in the WP User Avatar settings. How can I remove it? =
258
+ I've spent countless hours developing this plugin for free. If you're able to give a donation I'd appreciate it, but it's by no means a requirement. You can remove the message by adding this to the <code>functions.php</code> file of your theme:
259
+
260
+ `remove_action('wpua_donation_message', 'wpua_do_donation_message');`
261
+
262
+ == Advanced Settings ==
263
+
264
+ = Add WP User Avatar to your own profile edit page =
265
+
266
+ If you're building your own profile edit page, WP User Avatar is automatically added to the [show_user_profile](http://codex.wordpress.org/Plugin_API/Action_Reference/show_user_profile) and [edit_user_profile](http://codex.wordpress.org/Plugin_API/Action_Reference/show_user_profile) hooks. If you'd rather have WP User Avatar in its own section, you could add another hook:
267
+
268
+ `do_action('edit_user_avatar', $current_user);`
269
+
270
+ Then, to add WP User Avatar to that hook and remove it from the other hooks outside of the administration panel, you would add this code to the <code>functions.php</code> file of your theme:
271
+
272
+ `function my_avatar_filter() {
273
+ // Remove from show_user_profile hook
274
+ remove_action('show_user_profile', array('wp_user_avatar', 'wpua_action_show_user_profile'));
275
+ remove_action('show_user_profile', array('wp_user_avatar', 'wpua_media_upload_scripts'));
276
+
277
+ // Remove from edit_user_profile hook
278
+ remove_action('edit_user_profile', array('wp_user_avatar', 'wpua_action_show_user_profile'));
279
+ remove_action('edit_user_profile', array('wp_user_avatar', 'wpua_media_upload_scripts'));
280
+
281
+ // Add to edit_user_avatar hook
282
+ add_action('edit_user_avatar', array('wp_user_avatar', 'wpua_action_show_user_profile'));
283
+ add_action('edit_user_avatar', array('wp_user_avatar', 'wpua_media_upload_scripts'));
284
+ }
285
+
286
+ // Loads only outside of administration panel
287
+ if(!is_admin()) {
288
+ add_action('init','my_avatar_filter');`
289
+ }`
290
+
291
+ = HTML Wrapper =
292
+
293
+ You can change the HTML wrapper 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:
294
+
295
+ `<h3>Avatar</h3>
296
+ <table class="form-table">
297
+ <tr>
298
+ <th><label for="wp_user_avatar">Image</label></th>
299
+ <td>
300
+ <input type="hidden" name="wp-user-avatar" id="wp-user-avatar" value="{attachmentID}" />
301
+ <p id="wpua-add-button">
302
+ <button type="button" class="button" id="wpua-add" name="wpua-add">Edit Image</button>
303
+ </p>
304
+ <p id="wpua-preview">
305
+ <img src="{imageURL}" alt="" />
306
+ Original Size
307
+ </p>
308
+ <p id="wpua-thumbnail">
309
+ <img src="{imageURL}" alt="" />
310
+ Thumbnail
311
+ </p>
312
+ <p id="wpua-remove-button">
313
+ <button type="button" class="button" id="wpua-remove" name="wpua-remove">Default Avatar</button>
314
+ </p>
315
+ <p id="wpua-undo-button">
316
+ <button type="button" class="button" id="wpua-undo" name="wpua-undo">Undo</button>
317
+ </p>
318
+ </td>
319
+ </tr>
320
+ </table>`
321
+
322
+ To strip out the table, you would add the following filters to the <code>functions.php</code> file in your theme:
323
+
324
+ `remove_action('wpua_before_avatar', 'wpua_do_before_avatar');
325
+ remove_action('wpua_after_avatar', 'wpua_do_after_avatar');`
326
+
327
+ To add your own wrapper, you could create something like this:
328
+
329
+ `function my_before_avatar() {
330
+ echo '<div id="my-avatar">';
331
+ }
332
+ add_action('wpua_before_avatar', 'my_before_avatar');
333
+
334
+ function my_after_avatar() {
335
+ echo '</div>';
336
+ }
337
+ add_action('wpua_after_avatar', 'my_after_avatar');`
338
+
339
+ This would output:
340
+
341
+ `<div id="my-avatar">
342
+ <input type="hidden" name="wp-user-avatar" id="wp-user-avatar" value="{attachmentID}" />
343
+ <p id="wpua-add-button">
344
+ <button type="button" class="button" id="wpua-add" name="wpua-add">Edit Image</button>
345
+ </p>
346
+ <p id="wpua-preview">
347
+ <img src="{imageURL}" alt="" />
348
+ <span class="description">Original Size</span>
349
+ </p>
350
+ <p id="wpua-thumbnail">
351
+ <img src="{imageURL}" alt="" />
352
+ <span class="description">Thumbnail</span>
353
+ </p>
354
+ <p id="wpua-remove-button">
355
+ <button type="button" class="button" id="wpua-remove" name="wpua-remove">Default Avatar</button>
356
+ </p>
357
+ <p id="wpua-undo-button">
358
+ <button type="button" class="button" id="wpua-undo" name="wpua-undo">Undo</button>
359
+ </p>
360
+ </div>`
361
+
362
  == Screenshots ==
363
 
364
  1. WP User Avatar admin settings.
365
  2. WP User Avatar lets you upload your own Default Avatar.
366
  3. WP User Avatar adds a field to your profile edit page.
367
  4. After you've chosen a WP User Avatar image, you will see the option to remove it.
 
 
368
 
369
  == Changelog ==
370
 
371
+ = 1.9 =
372
+ * Add: Filters throughout plugin
373
+ * Bug Fix: Die messages
374
+ * Update: Move public functions to class
375
+
376
+ = 1.8.10 =
377
+ * Add: Search and screen option in Media Library view
378
+ * Bug Fix: Bulk delete in Media Library view
379
+ * Bug Fix: Hide captions if "Show Avatars" is off
380
+ * Bug Fix: Update avatar metadata on removal
381
+ * Update: Choose Image text
382
+ * Update: Show only images in Media Library modal
383
+ * Update: Show upload tab if no WP User Avatar image has been selected yet
384
+
385
+ = 1.8.9 =
386
+ * Bug Fix: Check for post object
387
+
388
+ = 1.8.8 =
389
+ * Bug Fix: Media upload scripts
390
+
391
+ = 1.8.7 =
392
+ * Bug Fix: Bad reference to wpua_is_author_or_above
393
+
394
+ = 1.8.6 =
395
+ * Bug Fix: Check for media upload scripts before setting post parent
396
+
397
+ = 1.8.5 =
398
+ * Add: Capability check in one function
399
+
400
+ = 1.8.4 =
401
+ * Bug Fix: Set avatar post parent to 0
402
+
403
+ = 1.8.3 =
404
+ * Bug Fix: Prevent attachment insert without image
405
+ * Update: Check for delete_posts capability instead of user role for Subscribers
406
+ * Update: Refactor and clean up
407
+
408
+ = 1.8.2 =
409
+ * Bug Fix: Edit avatar setting
410
+
411
+ = 1.8.1 =
412
+ * Bug Fix: Reattach scripts to profile action
413
+
414
+ = 1.8 =
415
+ * Add: Front page uploader
416
+ * Add: Media Library view of all avatars
417
+ * Bug Fix: Identify public static functions
418
+ * Update: Refactor code into separate classes
419
+ * Update: Translations
420
+
421
+ = 1.7.2 =
422
+ * Bug Fix: Files not committed properly in previous release
423
+
424
+ = 1.7.1 =
425
+ * Update: Error message handling for front pages
426
+
427
+ = 1.7 =
428
+ * Add: Caption for avatar
429
+ * Add: Polish translation
430
+ * Update: Error message handling
431
+
432
+ = 1.6.8 =
433
+ * Bug Fix: Shortcode without user
434
+
435
+ = 1.6.7 =
436
+ * Add: Undo button
437
+ * Bug Fix: Get original avatar
438
+
439
+ = 1.6.6 =
440
+ * Add: Donation message
441
+ * Bug Fix: Die page when image is too large
442
+ * Bug Fix: Resize images uploaded through plugin only
443
+ * Remove: Unused function
444
+ * Update: Refactor JavaScript
445
+
446
+ = 1.6.5 =
447
+ * Bug Fix: Use entire comment object instead of just e-mail address
448
+
449
+ = 1.6.4 =
450
+ * Bug Fix: Correct avatar not showing in widget
451
+ * Update: Check compatibility to 3.7.1
452
+
453
+ = 1.6.3 =
454
+ * Bug Fix: Checkbox value for "Crop avatars to exact dimensions"
455
+
456
+ = 1.6.2 =
457
+ * Bug Fix: Show Default Avatar if attachment doesn't exist
458
+ * Bug Fix: manage_users_custom_column not returning values
459
+
460
+ = 1.6.1 =
461
+ * Bug Fix: Profile not saving without an avatar for Contributors & Subscribers
462
+
463
+ = 1.6.0 =
464
+ * Add: Filters to change profile HTML structure
465
+ * Add: Recognition of sizes registered with add_image_size
466
+ * Add: Resize image options for Contributors & Subscribers
467
+ * Bug Fix: Rerrange CSS class names
468
+
469
+ = 1.5.8 =
470
+ * Bug Fix: Add function exists checks to prevent redeclare errors
471
+ * Bug Fix: Page die if file upload is too big
472
+ * Bug Fix: Upload file with submit
473
+
474
+ = 1.5.7 =
475
+ * Bug Fix: Separate out JavaScript for Contributors & Subscribers
476
+ * Bug Fix: Subscriber uploader not finding error type
477
+
478
+ = 1.5.6 =
479
+ * Update: Use cache for wpua_has_gravatar
480
+
481
+ = 1.5.5 =
482
+ * Bug Fix: Hide "Edit Image" button if Contributors & Subscribers can't edit avatar
483
+ * Bug Fix: Remove edit_posts capability if Subscribers can't edit avatar
484
+
485
  = 1.5.4 =
486
+ * Add: Option to enable avatar editing privilege for Contributors & Subscribers
487
  * Add: Swedish translation
488
  * Update: Move inline JavaScript to wp-user-avatar.js and wp-user-avatar-admin.js
489
  * Update: Load JavaScript in footer
515
  * Bug Fix: Use wp_die for errors
516
 
517
  = 1.4 =
518
+ * Add: Uploader for Contributors & Subscribers
519
  * Add: Media states for avatar images
520
  * Add: Plugin admin settings
521
  * Update: Change support only to WP 3.4+
575
  = 1.2 =
576
  * Add: Default Avatar setting
577
 
578
+ = 1.1.8 =
579
  * Bug Fix: Change update_usermeta to update_user_meta
580
 
581
  = 1.1.6 =
619
 
620
  == Upgrade Notice ==
621
 
622
+ = 1.8 =
623
+ * New Feature: Front page uploader
624
+ * New Feature: Media Library view of all avatars
625
+
626
  = 1.5.3 =
627
  * Notice: WP User Avatar 1.5.3 only supports WordPress 3.5 and above. If you are using an older version of WordPress, please upgrade your version of WordPress first.
628
 
uninstall.php CHANGED
@@ -1,31 +1,36 @@
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
6
 
7
  // Remove user metadata and options on plugin delete
8
- if(!defined('WP_UNINSTALL_PLUGIN')){
9
- die(__('You are not allowed to call this page directly.'));
10
  }
11
 
12
  global $wpdb, $blog_id, $switched;
13
  $users = get_users();
 
14
  // Remove settings for all sites in multisite
15
- if(is_multisite()){
16
- $blogs = $wpdb->get_results("SELECT * FROM $wpdb->blogs");
17
- foreach($users as $user){
18
- foreach($blogs as $blog){
19
  delete_user_meta($user->ID, $wpdb->get_blog_prefix($blog->blog_id).'user_avatar');
20
  }
21
  }
22
- foreach($blogs as $blog){
23
  switch_to_blog($blog->blog_id);
24
  delete_option('avatar_default_wp_user_avatar');
25
  delete_option('wp_user_avatar_allow_upload');
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');
@@ -33,7 +38,7 @@ if(is_multisite()){
33
  delete_option('wp_user_avatar_users_updated');
34
  }
35
  } else {
36
- foreach($users as $user){
37
  delete_user_meta($user->ID, $wpdb->get_blog_prefix($blog_id).'user_avatar');
38
  }
39
  delete_option('avatar_default_wp_user_avatar');
@@ -41,14 +46,19 @@ 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');
47
  delete_option('wp_user_avatar_media_updated');
48
  delete_option('wp_user_avatar_users_updated');
49
  }
 
50
  // Delete post meta
51
  delete_post_meta_by_key('_wp_attachment_wp_user_avatar');
 
52
  // Reset all default avatars to Mystery Man
53
  update_option('avatar_default', 'mystery');
54
- ?>
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
+ * @version 1.9
5
  */
6
 
7
  // Remove user metadata and options on plugin delete
8
+ if(!defined('WP_UNINSTALL_PLUGIN')) {
9
+ die('You are not allowed to call this page directly.');
10
  }
11
 
12
  global $wpdb, $blog_id, $switched;
13
  $users = get_users();
14
+
15
  // Remove settings for all sites in multisite
16
+ if(is_multisite()) {
17
+ $blogs = wp_get_sites();
18
+ foreach($users as $user) {
19
+ foreach($blogs as $blog) {
20
  delete_user_meta($user->ID, $wpdb->get_blog_prefix($blog->blog_id).'user_avatar');
21
  }
22
  }
23
+ foreach($blogs as $blog) {
24
  switch_to_blog($blog->blog_id);
25
  delete_option('avatar_default_wp_user_avatar');
26
  delete_option('wp_user_avatar_allow_upload');
27
  delete_option('wp_user_avatar_disable_gravatar');
28
  delete_option('wp_user_avatar_edit_avatar');
29
  delete_option('wp_user_avatar_load_scripts');
30
+ delete_option('wp_user_avatar_resize_crop');
31
+ delete_option('wp_user_avatar_resize_h');
32
+ delete_option('wp_user_avatar_resize_upload');
33
+ delete_option('wp_user_avatar_resize_w');
34
  delete_option('wp_user_avatar_tinymce');
35
  delete_option('wp_user_avatar_upload_size_limit');
36
  delete_option('wp_user_avatar_default_avatar_updated');
38
  delete_option('wp_user_avatar_users_updated');
39
  }
40
  } else {
41
+ foreach($users as $user) {
42
  delete_user_meta($user->ID, $wpdb->get_blog_prefix($blog_id).'user_avatar');
43
  }
44
  delete_option('avatar_default_wp_user_avatar');
46
  delete_option('wp_user_avatar_disable_gravatar');
47
  delete_option('wp_user_avatar_edit_avatar');
48
  delete_option('wp_user_avatar_load_scripts');
49
+ delete_option('wp_user_avatar_resize_crop');
50
+ delete_option('wp_user_avatar_resize_h');
51
+ delete_option('wp_user_avatar_resize_upload');
52
+ delete_option('wp_user_avatar_resize_w');
53
  delete_option('wp_user_avatar_tinymce');
54
  delete_option('wp_user_avatar_upload_size_limit');
55
  delete_option('wp_user_avatar_default_avatar_updated');
56
  delete_option('wp_user_avatar_media_updated');
57
  delete_option('wp_user_avatar_users_updated');
58
  }
59
+
60
  // Delete post meta
61
  delete_post_meta_by_key('_wp_attachment_wp_user_avatar');
62
+
63
  // Reset all default avatars to Mystery Man
64
  update_option('avatar_default', 'mystery');
 
wp-user-avatar.php CHANGED
@@ -1,986 +1,45 @@
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
- * @version 1.5.4
5
  */
 
6
  /*
7
  Plugin Name: WP User Avatar
8
  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
  */
16
 
17
- if(!defined('ABSPATH')){
18
- die(__('You are not allowed to call this page directly.'));
19
- @header('Content-Type:'.get_option('html_type').';charset='.get_option('blog_charset'));
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)));
27
-
28
- // Define global variables
29
- $avatar_default = get_option('avatar_default');
30
- $show_avatars = get_option('show_avatars');
31
- $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');
45
- $wpua_users_updated = get_option('wp_user_avatar_users_updated');
46
- $wpua_media_updated = get_option('wp_user_avatar_media_updated');
47
-
48
- // Max upload size
49
- if(!function_exists('wp_max_upload_size')){
50
- require_once(ABSPATH.'wp-admin/includes/template.php');
51
- }
52
-
53
- // Server upload size limit
54
- $upload_size_limit = wp_max_upload_size();
55
- // Convert to KB
56
- if($upload_size_limit > 1024){
57
- $upload_size_limit /= 1024;
58
- }
59
- $upload_size_limit_with_units = (int) $upload_size_limit.'KB';
60
-
61
- // User upload size limit
62
- $wpua_user_upload_size_limit = get_option('wp_user_avatar_upload_size_limit');
63
- if($wpua_user_upload_size_limit == 0 || $wpua_user_upload_size_limit > wp_max_upload_size()){
64
- $wpua_user_upload_size_limit = wp_max_upload_size();
65
- }
66
- // Value in bytes
67
- $wpua_upload_size_limit = $wpua_user_upload_size_limit;
68
- // Convert to KB
69
- if($wpua_user_upload_size_limit > 1024){
70
- $wpua_user_upload_size_limit /= 1024;
71
- }
72
- $wpua_upload_size_limit_with_units = (int) $wpua_user_upload_size_limit.'KB';
73
-
74
- // Load add-ons
75
- if((bool) $wpua_tinymce == 1){
76
- include_once(WPUA_ABSPATH.'includes/tinymce.php');
77
- }
78
-
79
- // Load translations
80
- load_plugin_textdomain('wp-user-avatar', "", WPUA_FOLDER.'/lang');
81
-
82
- // Initialize default settings
83
- register_activation_hook(WPUA_ABSPATH.'wp-user-avatar.php', 'wpua_options');
84
-
85
- // Remove subscribers edit_posts capability
86
- register_deactivation_hook(WPUA_ABSPATH.'wp-user-avatar.php', 'wpua_deactivate');
87
-
88
- // Settings saved to wp_options
89
- function wpua_options(){
90
- add_option('avatar_default_wp_user_avatar', "");
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
- }
97
- add_action('admin_init', 'wpua_options');
98
-
99
- // Update default avatar to new format
100
- if(empty($wpua_default_avatar_updated)){
101
- function wpua_default_avatar(){
102
- global $avatar_default, $mustache_original, $wpua_avatar_default;
103
- // If default avatar is the old mustache URL, update it
104
- if($avatar_default == $mustache_original){
105
- update_option('avatar_default', 'wp_user_avatar');
106
- }
107
- // If user had an image URL as the default avatar, replace with ID instead
108
- if(!empty($wpua_avatar_default)){
109
- $wpua_avatar_default_image = wp_get_attachment_image_src($wpua_avatar_default, 'medium');
110
- if($avatar_default == $wpua_avatar_default_image[0]){
111
- update_option('avatar_default', 'wp_user_avatar');
112
- }
113
- }
114
- update_option('wp_user_avatar_default_avatar_updated', '1');
115
- }
116
- add_action('admin_init', 'wpua_default_avatar');
117
- }
118
-
119
- // Rename user meta to match database settings
120
- if(empty($wpua_users_updated)){
121
- function wpua_user_meta(){
122
- global $blog_id, $wpdb;
123
- $wpua_metakey = $wpdb->get_blog_prefix($blog_id).'user_avatar';
124
- // If database tables start with something other than wp_
125
- if($wpua_metakey != 'wp_user_avatar'){
126
- $users = get_users();
127
- // Move current user metakeys to new metakeys
128
- foreach($users as $user){
129
- $wpua = get_user_meta($user->ID, 'wp_user_avatar', true);
130
- if(!empty($wpua)){
131
- update_user_meta($user->ID, $wpua_metakey, $wpua);
132
- delete_user_meta($user->ID, 'wp_user_avatar');
133
- }
134
- }
135
- }
136
- update_option('wp_user_avatar_users_updated', '1');
137
- }
138
- add_action('admin_init', 'wpua_user_meta');
139
- }
140
-
141
- // Add media state to existing avatars
142
- if(empty($wpua_media_updated)){
143
- function wpua_media_state(){
144
- global $blog_id, $wpdb;
145
- // Find all users with WPUA
146
- $wpua_metakey = $wpdb->get_blog_prefix($blog_id).'user_avatar';
147
- $wpuas = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->usermeta WHERE meta_key = %s AND meta_value != %d AND meta_value != %d", $wpua_metakey, 0, ""));
148
- foreach($wpuas as $usermeta){
149
- add_post_meta($usermeta->meta_value, '_wp_attachment_wp_user_avatar', $usermeta->user_id);
150
- }
151
- update_option('wp_user_avatar_media_updated', '1');
152
- }
153
- add_action('admin_init', 'wpua_media_state');
154
- }
155
-
156
- // Settings for Subscribers
157
- if((bool) $wpua_allow_upload == 1){
158
- // Allow multipart data in form
159
- function wpua_add_edit_form_multipart_encoding(){
160
- echo ' enctype="multipart/form-data"';
161
- }
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)){
169
- return false;
170
- }
171
- return in_array($role, (array) $user->roles);
172
- }
173
-
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');
181
- }
182
- }
183
- add_action('admin_menu', 'wpua_subscriber_remove_menu_pages');
184
-
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
- }
192
- }
193
- add_action('wp_before_admin_bar_render', 'wpua_subscriber_remove_menu_bar_items');
194
-
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');
202
- }
203
- }
204
- add_action('wp_dashboard_setup', 'wpua_subscriber_remove_dashboard_widgets');
205
-
206
- // Restrict access to pages
207
- function wpua_subscriber_offlimits(){
208
- global $current_user, $pagenow, $wpua_edit_avatar;
209
- if((bool) $wpua_edit_avatar == 1){
210
- $offlimits = array('edit.php', 'edit-comments.php', 'post-new.php', 'tools.php');
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.'));
218
- }
219
- }
220
- }
221
- add_action('admin_init', 'wpua_subscriber_offlimits');
222
- }
223
-
224
- if((bool) $wpua_allow_upload == 1 && (bool) $wpua_edit_avatar == 1){
225
- // Give subscribers edit_posts capability
226
- function wpua_subscriber_add_cap(){
227
- global $blog_id, $wpdb;
228
- $wp_user_roles = $wpdb->get_blog_prefix($blog_id).'user_roles';
229
- $user_roles = get_option($wp_user_roles);
230
- $user_roles['subscriber']['capabilities']['edit_posts'] = true;
231
- update_option($wp_user_roles, $user_roles);
232
- }
233
- add_action('admin_init', 'wpua_subscriber_add_cap');
234
- }
235
-
236
- // Remove subscribers edit_posts capability
237
- function wpua_subscriber_remove_cap(){
238
- global $blog_id, $wpdb;
239
- $wp_user_roles = $wpdb->get_blog_prefix($blog_id).'user_roles';
240
- $user_roles = get_option($wp_user_roles);
241
- unset($user_roles['subscriber']['capabilities']['edit_posts']);
242
- update_option($wp_user_roles, $user_roles);
243
- }
244
-
245
- // On deactivation
246
- function wpua_deactivate(){
247
- // Remove subscribers edit_posts capability
248
- wpua_subscriber_remove_cap();
249
- // Reset all default avatar to Mystery Man
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
261
- if(!function_exists('get_current_screen')){
262
- require_once(ABSPATH.'wp-admin/includes/screen.php');
263
- }
264
- // Profile functions and scripts
265
- add_action('show_user_profile', array('wp_user_avatar', 'wpua_action_show_user_profile'));
266
- add_action('edit_user_profile', array($this, 'wpua_action_show_user_profile'));
267
- add_action('personal_options_update', array($this, 'wpua_action_process_option_update'));
268
- add_action('edit_user_profile_update', array($this, 'wpua_action_process_option_update'));
269
- add_action('show_user_profile', array($this, 'wpua_media_upload_scripts'));
270
- add_action('edit_user_profile', array($this, 'wpua_media_upload_scripts'));
271
- // Admin scripts
272
- if($pagenow == 'options-discussion.php' || ($pagenow == 'options-general.php' && isset($_GET['page']) && $_GET['page'] == 'wp-user-avatar')){
273
- add_action('admin_enqueue_scripts', array($this, 'wpua_media_upload_scripts'));
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');
281
- add_filter('plugin_action_links', array($this, 'wpua_plugin_settings_links'), 10, 2);
282
- // Hide column in Users table if default avatars are enabled
283
- if((bool) $show_avatars == 0 && is_admin()){
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;
293
- // Get WPUA attachment ID
294
- $wpua = get_user_meta($user->ID, $wpdb->get_blog_prefix($blog_id).'user_avatar', true);
295
- // Show remove button if WPUA is set
296
- $hide_remove = !has_wp_user_avatar($user->ID) ? ' wpua-hide' : "";
297
- // If avatars are enabled, get original avatar image or show blank
298
- $avatar_medium_src = (bool) $show_avatars == 1 ? wpua_get_avatar_original($user->user_email, 96) : includes_url().'images/blank.gif';
299
- // Check if user has wp_user_avatar, if not show image from above
300
- $avatar_medium = has_wp_user_avatar($user->ID) ? get_wp_user_avatar_src($user->ID, 'medium') : $avatar_medium_src;
301
- // Check if user has wp_user_avatar, if not show image from above
302
- $avatar_thumbnail = has_wp_user_avatar($user->ID) ? get_wp_user_avatar_src($user->ID, 96) : $avatar_medium_src;
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="" />
334
- <?php _e('Original Size'); ?>
335
- </p>
336
- <p id="wpua-thumbnail">
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
-
352
- // Set upload size limit for users without upload_files capability
353
- function wpua_handle_upload_prefilter($file){
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
- }
361
-
362
- // Update user meta
363
- function wpua_action_process_option_update($user_id){
364
- global $blog_id, $wpdb;
365
- // Check if user has upload_files capability
366
- if(current_user_can('upload_files')){
367
- $wpua_id = isset($_POST['wp-user-avatar']) ? intval($_POST['wp-user-avatar']) : "";
368
- $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->postmeta WHERE meta_key = %s AND meta_value = %d", '_wp_attachment_wp_user_avatar', $user_id));
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'));
375
- foreach($attachments as $attachment){
376
- // Delete attachment if not used by another user
377
- if(!wpua_image($attachment->ID, $user_id)){
378
- wp_delete_post($attachment->ID);
379
- }
380
- }
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
- }
434
-
435
- // Add button to attach image for WP 3.4 and older
436
- function wpua_add_attachment_field_to_edit($fields, $post){
437
- $image = wp_get_attachment_image_src($post->ID, "medium");
438
- $button = '<button type="button" class="button" id="set-wp-user-avatar-image" name="set-wp-user-avatar-image" onclick="wpuaSetAvatar(\''.$post->ID.'\', \''.$image[0].'\')">'.__('Select Image').'</button>';
439
- $fields['wp-user-avatar'] = array(
440
- 'label' => __('WP User Avatar', 'wp-user-avatar'),
441
- 'input' => 'html',
442
- 'html' => $button
443
- );
444
- return $fields;
445
- }
446
-
447
- // Add settings link on plugin page
448
- function wpua_plugin_settings_links($links, $file){
449
- if(basename($file) == basename(plugin_basename(__FILE__))){
450
- $settings_link = '<a href="'.add_query_arg(array('page' => 'wp-user-avatar'), admin_url('options-general.php')).'">'.__('Settings').'</a>';
451
- $links = array_merge($links, array($settings_link));
452
- }
453
- return $links;
454
- }
455
-
456
- // Add column to Users table
457
- function wpua_add_column($columns){
458
- return $columns + array('wp-user-avatar' => __('WP User Avatar', 'wp-user-avatar'));
459
- }
460
-
461
- // Show thumbnail in Users table
462
- function wpua_show_column($value, $column_name, $user_id){
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
472
- function wpua_media_upload_scripts($user=""){
473
- global $mustache_admin, $pagenow, $show_avatars, $wpua_upload_size_limit;
474
- wp_enqueue_script('jquery');
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')){
483
- // Size limit slider
484
- wp_enqueue_script('jquery-ui-slider');
485
- wp_enqueue_style('wp-user-avatar-jqueryui', WPUA_URLPATH.'css/jquery.ui.slider.css', "", null);
486
- // Remove/edit settings
487
- $wpua_custom_scripts = array('section' => __('Default Avatar'), 'edit_image' => __('Edit Image'), 'select_image' => __('Select Image'), 'avatar_thumb' => $mustache_admin);
488
- wp_localize_script('wp-user-avatar', 'wpua_custom', $wpua_custom_scripts);
489
- // Settings control
490
- wp_enqueue_script('wp-user-avatar-admin', WPUA_URLPATH.'js/wp-user-avatar-admin.js', array('wp-user-avatar'), WPUA_VERSION, true);
491
- $wpua_admin_scripts = array('upload_size_limit' => $wpua_upload_size_limit, 'max_upload_size' => wp_max_upload_size());
492
- wp_localize_script('wp-user-avatar-admin', 'wpua_admin', $wpua_admin_scripts);
493
- } else {
494
- // User remove/edit settings
495
- $avatar_medium_src = (bool) $show_avatars == 1 ? wpua_get_avatar_original($user->user_email, 96) : includes_url().'images/blank.gif';
496
- $wpua_custom_scripts = array('section' => $user->display_name, 'edit_image' => __('Edit Image'), 'select_image' => __('Select Image'), 'avatar_thumb' => $avatar_medium_src);
497
- wp_localize_script('wp-user-avatar', 'wpua_custom', $wpua_custom_scripts);
498
- }
499
- }
500
- }
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);
508
- // Get registered user e-mail address
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
-
521
- // Returns true if user has wp_user_avatar
522
- function has_wp_user_avatar($id_or_email="", $has_wpua=false, $user="", $user_id=""){
523
- global $blog_id, $wpdb;
524
- if(!is_object($id_or_email) && !empty($id_or_email)){
525
- // Find user by ID or e-mail address
526
- $user = is_numeric($id_or_email) ? get_user_by('id', $id_or_email) : get_user_by('email', $id_or_email);
527
- // Get registered user ID
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
- }
545
- } else {
546
- if(has_wp_user_avatar($id_or_email)){
547
- $avatar = get_wp_user_avatar($id_or_email, $size, $default, $alt);
548
- // User has Gravatar and Gravatar is not disabled
549
- } elseif((bool) $wpua_disable_gravatar != 1 && wpua_has_gravatar($id_or_email)){
550
- $avatar = $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')){
565
- $default = $mustache_original;
566
- } elseif($size <= get_option('medium_size_w') && $size > get_option('thumbnail_size_w')){
567
- $default = $mustache_medium;
568
- } elseif($size <= get_option('thumbnail_size_w') && $size > 96){
569
- $default = $mustache_thumbnail;
570
- } elseif($size <= 96 && $size > 32){
571
- $default = $mustache_avatar;
572
- } elseif($size <= 32){
573
- $default = $mustache_admin;
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;
584
- }
585
- add_filter('get_avatar', 'wpua_get_avatar_filter', 10, 6);
586
-
587
- // Get original avatar, for when user removes wp_user_avatar
588
- function wpua_get_avatar_original($id_or_email, $size="", $default="", $alt=""){
589
- global $avatar_default, $mustache_avatar, $wpua_avatar_default, $wpua_disable_gravatar;
590
- // Remove get_avatar filter only in admin
591
- if(is_admin()){
592
- remove_filter('get_avatar', 'wpua_get_avatar_filter');
593
- }
594
- if((bool) $wpua_disable_gravatar != 1){
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 {
602
- $default = $mustache_avatar;
603
- }
604
- } else {
605
- // Get image from Gravatar, whether it's the user's image or default image
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 {
616
- $default = $mustache_avatar;
617
- }
618
- }
619
- return $default;
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
641
- $user = is_numeric($id_or_email) ? get_user_by('id', $id_or_email) : get_user_by('email', $id_or_email);
642
- } else {
643
- // Find author's name if id_or_email is empty
644
- $author_name = get_query_var('author_name');
645
- if(is_author()){
646
- // On author page, get user by page slug
647
- $user = get_user_by('slug', $author_name);
648
- } else {
649
- // On post, get user by author meta
650
- $user_id = get_the_author_meta('ID');
651
- $user = get_user_by('id', $user_id);
652
- }
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
667
- $get_size = is_numeric($size) ? array($size,$size) : $size;
668
- // Get image src
669
- $wpua_image = wp_get_attachment_image_src($wpua_meta, $get_size);
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
- }
694
-
695
- // Return just the image src
696
- function get_wp_user_avatar_src($id_or_email, $size="", $align=""){
697
- $wpua_image_src = "";
698
- // Gets the avatar img tag
699
- $wpua_image = get_wp_user_avatar($id_or_email, $size, $align);
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
- }
707
-
708
- // Shortcode
709
- function wpua_shortcode($atts, $content){
710
- global $blog_id, $wpdb;
711
- // Set shortcode attributes
712
- extract(shortcode_atts(array('user' => "", 'size' => '96', 'align' => "", 'link' => "", 'target' => ""), $atts));
713
- // Find user by ID, login, slug, or e-mail address
714
- if(!empty($user)){
715
- $user = is_numeric($user) ? get_user_by('id', $user) : get_user_by('login', $user);
716
- $user = empty($user) ? get_user_by('slug', $user) : $user;
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
724
- $link_class = $link;
725
- // Open in new window
726
- $target_link = !empty($target) ? ' target="'.$target.'"' : "";
727
- if($link == 'file'){
728
- // Get image src
729
- $image_link = get_wp_user_avatar_src($id_or_email, 'original', $align);
730
- } elseif($link == 'attachment'){
731
- // Get attachment URL
732
- $image_link = get_attachment_link(get_the_author_meta($wpdb->get_blog_prefix($blog_id).'user_avatar', $id_or_email));
733
- } else {
734
- // URL
735
- $image_link = $link;
736
- $link_class = 'custom';
737
- }
738
- // Wrap the avatar inside the link
739
- $avatar = '<a href="'.$image_link.'" class="wp-user-avatar-link wp-user-avatar-'.$link_class.'"'.$target_link.'>'.get_wp_user_avatar($id_or_email, $size, $align).'</a>';
740
- } else {
741
- // Get WPUA as normal
742
- $avatar = get_wp_user_avatar($id_or_email, $size, $align);
743
- }
744
- return $avatar;
745
- }
746
- add_shortcode('avatar', 'wpua_shortcode');
747
-
748
- // Add default avatar
749
- function wpua_add_default_avatar($avatar_list=null){
750
- global $avatar_default, $mustache_admin, $mustache_medium, $wpua_avatar_default, $wpua_disable_gravatar;
751
- // Remove get_avatar filter
752
- remove_filter('get_avatar', 'wpua_get_avatar_filter');
753
- // Set avatar_list variable
754
- $avatar_list = "";
755
- // Set avatar defaults
756
- $avatar_defaults = array(
757
- 'mystery' => __('Mystery Man'),
758
- 'blank' => __('Blank'),
759
- 'gravatar_default' => __('Gravatar Logo'),
760
- 'identicon' => __('Identicon (Generated)'),
761
- 'wavatar' => __('Wavatar (Generated)'),
762
- 'monsterid' => __('MonsterID (Generated)'),
763
- 'retro' => __('Retro (Generated)')
764
- );
765
- // No Default Avatar, set to Mystery Man
766
- if(empty($avatar_default)){
767
- $avatar_default = 'mystery';
768
- }
769
- // Take avatar_defaults and get examples for unknown@gravatar.com
770
- foreach($avatar_defaults as $default_key => $default_name){
771
- $avatar = get_avatar('unknown@gravatar.com', 32, $default_key);
772
- $selected = ($avatar_default == $default_key) ? 'checked="checked" ' : "";
773
- $avatar_list .= "\n\t<label><input type='radio' name='avatar_default' id='avatar_{$default_key}' value='".esc_attr($default_key)."' {$selected}/> ";
774
- $avatar_list .= preg_replace("/src='(.+?)'/", "src='\$1&amp;forcedefault=1'", $avatar);
775
- $avatar_list .= ' '.$default_name.'</label>';
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" ' : "";
789
- // Wrap WPUA in div
790
- $avatar_thumb_img = '<div id="wpua-preview"><img src="'.$avatar_thumb.'" width="32" /></div>';
791
- // Add WPUA to list
792
- $wpua_list = "\n\t<label><input type='radio' name='avatar_default' id='wp_user_avatar_radio' value='wp_user_avatar'$selected_avatar /> ";
793
- $wpua_list .= preg_replace("/src='(.+?)'/", "src='\$1'", $avatar_thumb_img);
794
- $wpua_list .= ' '.__('WP User Avatar', 'wp-user-avatar').'</label>';
795
- $wpua_list .= '<p id="wpua-edit"><button type="button" class="button" id="wpua-add" name="wpua-add">'.__('Edit Image').'</button>';
796
- $wpua_list .= '<a href="#" id="wpua-remove"'.$hide_remove.'>'.__('Remove').'</a></p>';
797
- $wpua_list .= '<input type="hidden" id="wp-user-avatar" name="avatar_default_wp_user_avatar" value="'.$wpua_avatar_default.'">';
798
- $wpua_list .= '<p id="wpua-message">'.sprintf(__('Click %s to save your changes', 'wp-user-avatar'), '&ldquo;'.__('Save Changes').'&rdquo;').'</p>';
799
- if((bool) $wpua_disable_gravatar != 1){
800
- return $wpua_list.'<div id="wp-avatars">'.$avatar_list.'</div>';
801
- } else {
802
- return $wpua_list;
803
- }
804
- }
805
- add_filter('default_avatar_select', 'wpua_add_default_avatar', 10);
806
-
807
- // Add default avatar_default to whitelist
808
- function wpua_whitelist_options($whitelist_options){
809
- $whitelist_options['discussion'][] = 'avatar_default_wp_user_avatar';
810
- return $whitelist_options;
811
- }
812
- add_filter('whitelist_options', 'wpua_whitelist_options', 10);
813
-
814
- // Add media state
815
- function wpua_add_media_state($media_states){
816
- global $post, $wpua_avatar_default;
817
- $is_wpua = get_post_custom_values('_wp_attachment_wp_user_avatar', $post->ID);
818
- if(!empty($is_wpua)){
819
- $media_states[] = __('Avatar');
820
- }
821
- if(!empty($wpua_avatar_default) && ($wpua_avatar_default == $post->ID)){
822
- $media_states[] = __('Default Avatar');
823
- }
824
- return apply_filters('wpua_add_media_state', $media_states);
825
- }
826
- add_filter('display_media_states', 'wpua_add_media_state', 10, 1);
827
-
828
- // Check if image is used as WPUA
829
- function wpua_image($attachment_id, $user_id, $wpua_image=false){
830
- global $wpdb;
831
- $wpua = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = %s AND meta_value != %d", $attachment_id, '_wp_attachment_wp_user_avatar', $user_id));
832
- if(!empty($wpua)){
833
- $wpua_image = true;
834
- }
835
- return $wpua_image;
836
- }
837
-
838
- // Check who owns image
839
- function wpua_author($attachment_id, $user_id, $wpua_author=false){
840
- $attachment = get_post($attachment_id);
841
- if(!empty($attachment) && $attachment->post_author == $user_id){
842
- $wpua_author = true;
843
- }
844
- return $wpua_author;
845
- }
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(); ?>
858
- <h2><?php _e('WP User Avatar', 'wp-user-avatar'); ?></h2>
859
- <form method="post" action="options.php">
860
- <?php settings_fields('wpua-settings-group'); ?>
861
- <?php do_settings_fields('wpua-settings-group', ""); ?>
862
- <table class="form-table">
863
- <tr valign="top">
864
- <th scope="row"><?php _e('Settings'); ?></th>
865
- <td>
866
- <fieldset>
867
- <legend class="screen-reader-text"><span><?php _e('Settings'); ?></span></legend>
868
- <label for="wp_user_avatar_tinymce">
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'); ?>
881
- </label>
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">
911
- <tr valign="top">
912
- <th scope="row"><?php _e('Avatar Display'); ?></th>
913
- <td>
914
- <fieldset>
915
- <legend class="screen-reader-text"><span><?php _e('Avatar Display'); ?></span></legend>
916
- <label for="show_avatars">
917
- <input type="checkbox" id="show_avatars" name="show_avatars" value="1" <?php checked($show_avatars, 1); ?> />
918
- <?php _e('Show Avatars'); ?>
919
- </label>
920
- </fieldset>
921
- </td>
922
- </tr>
923
- <tr valign="top">
924
- <th scope="row"><?php _e('Maximum Rating'); ?></th>
925
- <td>
926
- <fieldset>
927
- <legend class="screen-reader-text"><span><?php _e('Maximum Rating'); ?></span></legend>
928
- <?php
929
- $ratings = array(
930
- 'G' => __('G &#8212; Suitable for all audiences'),
931
- 'PG' => __('PG &#8212; Possibly offensive, usually for audiences 13 and above'),
932
- 'R' => __('R &#8212; Intended for adult audiences above 17'),
933
- 'X' => __('X &#8212; Even more mature than above')
934
- );
935
- foreach ($ratings as $key => $rating) :
936
- $selected = (get_option('avatar_rating') == $key) ? 'checked="checked"' : "";
937
- echo "\n\t<label><input type='radio' name='avatar_rating' value='" . esc_attr($key) . "' $selected/> $rating</label><br />";
938
- endforeach;
939
- ?>
940
- </fieldset>
941
- </td>
942
- </tr>
943
- <tr valign="top">
944
- <th scope="row"><?php _e('Default Avatar') ?></th>
945
- <td class="defaultavatarpicker">
946
- <fieldset>
947
- <legend class="screen-reader-text"><span><?php _e('Default Avatar'); ?></span></legend>
948
- <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address.'); ?><br />
949
- <?php echo wpua_add_default_avatar(); ?>
950
- </fieldset>
951
- </td>
952
- </tr>
953
- </table>
954
- <?php submit_button(); ?>
955
- </form>
956
- </div>
957
- <?php
958
- }
959
-
960
- // Whitelist settings
961
- function wpua_admin_settings(){
962
- register_setting('wpua-settings-group', 'avatar_rating');
963
- register_setting('wpua-settings-group', 'avatar_default');
964
- register_setting('wpua-settings-group', 'avatar_default_wp_user_avatar', 'intval');
965
- register_setting('wpua-settings-group', 'show_avatars', 'intval');
966
- register_setting('wpua-settings-group', 'wp_user_avatar_tinymce', 'intval');
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
-
973
- // Add options page and settings
974
- function wpua_admin(){
975
- add_options_page(__('WP User Avatar', 'wp-user-avatar'), __('WP User Avatar', 'wp-user-avatar'), 'manage_options', 'wp-user-avatar', 'wpua_options_page');
976
- add_action('admin_init', 'wpua_admin_settings');
977
- }
978
-
979
- // Initialize WPUA after other plugins are loaded
980
- function wpua_load(){
981
- global $wpua_instance;
982
- $wpua_instance = new wp_user_avatar();
983
- }
984
- add_action('plugins_loaded', 'wpua_load');
985
- }
986
- ?>
1
  <?php
2
  /**
3
  * @package WP User Avatar
4
+ * @version 1.9
5
  */
6
+
7
  /*
8
  Plugin Name: WP User Avatar
9
  Plugin URI: http://wordpress.org/plugins/wp-user-avatar/
10
  Description: Use any image from your WordPress Media Library as a custom user avatar. Add your own Default Avatar.
11
  Author: Bangbay Siboliban
12
  Author URI: http://siboliban.org/
13
+ Version: 1.9
14
  Text Domain: wp-user-avatar
15
  Domain Path: /lang/
16
  */
17
 
18
+ if(!defined('ABSPATH')) {
19
+ die('You are not allowed to call this page directly.');
 
20
  }
21
 
22
+ // Define paths
23
+ define('WPUA_VERSION', '1.9');
24
  define('WPUA_FOLDER', basename(dirname(__FILE__)));
25
+ define('WPUA_DIR', plugin_dir_path(__FILE__));
26
+ define('WPUA_INC', WPUA_DIR.'includes'.'/');
27
+ define('WPUA_URL', plugin_dir_url(WPUA_FOLDER).WPUA_FOLDER.'/');
28
+ define('WPUA_INC_URL', WPUA_URL.'includes'.'/');
29
+
30
+ // WordPress includes used in plugin
31
+ require_once(ABSPATH.'wp-admin/includes/file.php');
32
+ require_once(ABSPATH.'wp-admin/includes/image.php');
33
+ require_once(ABSPATH.'wp-admin/includes/media.php');
34
+ require_once(ABSPATH.'wp-admin/includes/screen.php');
35
+ require_once(ABSPATH.'wp-admin/includes/template.php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  // WP User Avatar
38
+ require_once(WPUA_INC.'wpua-globals.php');
39
+ require_once(WPUA_INC.'wpua-functions.php');
40
+ require_once(WPUA_INC.'class-wp-user-avatar.php');
41
+ require_once(WPUA_INC.'class-wp-user-avatar-functions.php');
42
+ require_once(WPUA_INC.'class-wp-user-avatar-admin.php');
43
+ require_once(WPUA_INC.'class-wp-user-avatar-shortcode.php');
44
+ require_once(WPUA_INC.'class-wp-user-avatar-subscriber.php');
45
+ require_once(WPUA_INC.'class-wp-user-avatar-update.php');