| @@ -8,29 +8,64 @@ | ||
| 8 | 8 | * |
| 9 | 9 | * @since 1.4 |
| 10 | 10 | */ |
| 11 | 11 | class PLL_Filters { |
| 12 | - public $links_model, $model, $options, $curlang; | |
| 12 | + /** | |
| 13 | + * Stores the plugin options. | |
| 14 | + * | |
| 15 | + * @var array | |
| 16 | + */ | |
| 17 | + public $options; | |
| 13 | 18 | |
| 14 | 19 | /** |
| 20 | + * @var PLL_Model | |
| 21 | + */ | |
| 22 | + public $model; | |
| 23 | + | |
| 24 | + /** | |
| 25 | + * Instance of a child class of PLL_Links_Model. | |
| 26 | + * | |
| 27 | + * @var PLL_Links_Model | |
| 28 | + */ | |
| 29 | + public $links_model; | |
| 30 | + | |
| 31 | + /** | |
| 32 | + * Current language. | |
| 33 | + * | |
| 34 | + * @var PLL_Language|null | |
| 35 | + */ | |
| 36 | + public $curlang; | |
| 37 | + | |
| 38 | + /** | |
| 15 | 39 | * Constructor: setups filters |
| 16 | 40 | * |
| 17 | 41 | * @since 1.4 |
| 18 | 42 | * |
| 19 | - * @param object $polylang | |
| 43 | + * @param object $polylang The Polylang object. | |
| 20 | 44 | */ |
| 21 | 45 | public function __construct( &$polylang ) { |
| 46 | + global $wp_version; | |
| 47 | + | |
| 22 | 48 | $this->links_model = &$polylang->links_model; |
| 23 | 49 | $this->model = &$polylang->model; |
| 24 | 50 | $this->options = &$polylang->options; |
| 25 | 51 | $this->curlang = &$polylang->curlang; |
| 26 | 52 | |
| 53 | + // Deletes our cache for sticky posts when the list is updated. | |
| 54 | + add_action( 'update_option_sticky_posts', array( $this, 'delete_sticky_posts_cache' ) ); | |
| 55 | + add_action( 'add_option_sticky_posts', array( $this, 'delete_sticky_posts_cache' ) ); | |
| 56 | + add_action( 'delete_option_sticky_posts', array( $this, 'delete_sticky_posts_cache' ) ); | |
| 57 | + | |
| 27 | 58 | // Filters the comments according to the current language |
| 28 | 59 | add_action( 'parse_comment_query', array( $this, 'parse_comment_query' ) ); |
| 29 | 60 | add_filter( 'comments_clauses', array( $this, 'comments_clauses' ), 10, 2 ); |
| 30 | 61 | |
| 31 | 62 | // Filters the get_pages function according to the current language |
| 32 | - add_filter( 'get_pages', array( $this, 'get_pages' ), 10, 2 ); | |
| 63 | + if ( version_compare( $wp_version, '6.3-alpha', '<' ) ) { | |
| 64 | + // Backward compatibility with WP < 6.3. | |
| 65 | + add_filter( 'get_pages', array( $this, 'get_pages' ), 10, 2 ); | |
| 66 | + } | |
| 67 | + add_filter( 'get_pages_query_args', array( $this, 'get_pages_query_args' ), 10, 2 ); | |
| 33 | 68 | |
| 34 | 69 | // Rewrites next and previous post links to filter them by language |
| 35 | 70 | add_filter( 'get_previous_post_join', array( $this, 'posts_join' ), 10, 5 ); |
| 36 | 71 | add_filter( 'get_next_post_join', array( $this, 'posts_join' ), 10, 5 ); |
| @@ -36,14 +71,11 @@ | ||
| 36 | 71 | add_filter( 'get_next_post_join', array( $this, 'posts_join' ), 10, 5 ); |
| 37 | 72 | add_filter( 'get_previous_post_where', array( $this, 'posts_where' ), 10, 5 ); |
| 38 | 73 | add_filter( 'get_next_post_where', array( $this, 'posts_where' ), 10, 5 ); |
| 39 | 74 | |
| 40 | - // Converts the locale to a valid W3C locale | |
| 75 | + // Converts the locale to a valid W3C locale. | |
| 41 | 76 | add_filter( 'language_attributes', array( $this, 'language_attributes' ) ); |
| 42 | 77 | |
| 43 | - // Prevents deleting all the translations of the default category | |
| 44 | - add_filter( 'map_meta_cap', array( $this, 'fix_delete_default_category' ), 10, 4 ); | |
| 45 | - | |
| 46 | 78 | // Translate the site title in emails sent to users |
| 47 | 79 | add_filter( 'password_change_email', array( $this, 'translate_user_email' ) ); |
| 48 | 80 | add_filter( 'email_change_email', array( $this, 'translate_user_email' ) ); |
| 49 | 81 | |
| @@ -52,72 +84,105 @@ | ||
| 52 | 84 | add_filter( 'map_meta_cap', array( $this, 'fix_privacy_policy_page_editing' ), 10, 4 ); |
| 53 | 85 | |
| 54 | 86 | // Personal data exporter |
| 55 | 87 | add_filter( 'wp_privacy_personal_data_exporters', array( $this, 'register_personal_data_exporter' ), 0 ); // Since WP 4.9.6 |
| 88 | + | |
| 89 | + // Fix for `term_exists()`. | |
| 90 | + add_filter( 'term_exists_default_query_args', array( $this, 'term_exists_default_query_args' ), 0, 3 ); // Since WP 6.0.0. | |
| 56 | 91 | } |
| 57 | 92 | |
| 58 | 93 | /** |
| 59 | - * Get the language to filter a comments query | |
| 94 | + * Deletes the cache for multilingual sticky posts. | |
| 60 | 95 | * |
| 96 | + * @since 2.8.4 | |
| 97 | + * | |
| 98 | + * @return void | |
| 99 | + */ | |
| 100 | + public function delete_sticky_posts_cache() { | |
| 101 | + wp_cache_delete( 'sticky_posts', 'options' ); | |
| 102 | + } | |
| 103 | + | |
| 104 | + /** | |
| 105 | + * Get the language to filter a comments query. | |
| 106 | + * | |
| 61 | 107 | * @since 2.0 |
| 108 | + * @since 3.1 Always returns an array. Renamed from get_comments_queried_language(). | |
| 62 | 109 | * |
| 63 | - * @param object $query | |
| 64 | - * @return object|bool the language(s) to use in the filter, false otherwise | |
| 110 | + * @param WP_Comment_Query $query WP_Comment_Query object. | |
| 111 | + * @return PLL_Language[] The languages to use in the filter. | |
| 65 | 112 | */ |
| 66 | - protected function get_comments_queried_language( $query ) { | |
| 67 | - // Don't filter comments if comment ids or post ids are specified | |
| 113 | + protected function get_comments_queried_languages( $query ) { | |
| 114 | + // Don't filter comments if comment ids or post ids are specified. | |
| 68 | 115 | $plucked = wp_array_slice_assoc( $query->query_vars, array( 'comment__in', 'parent', 'post_id', 'post__in', 'post_parent' ) ); |
| 69 | 116 | $fields = array_filter( $plucked ); |
| 70 | 117 | if ( ! empty( $fields ) ) { |
| 71 | - return false; | |
| 118 | + return array(); | |
| 72 | 119 | } |
| 73 | 120 | |
| 74 | - // Don't filter comments if a non translated post type is specified | |
| 121 | + // Don't filter comments if a non translated post type is specified. | |
| 75 | 122 | if ( ! empty( $query->query_vars['post_type'] ) && ! $this->model->is_translated_post_type( $query->query_vars['post_type'] ) ) { |
| 76 | - return false; | |
| 123 | + return array(); | |
| 77 | 124 | } |
| 78 | 125 | |
| 79 | - return empty( $query->query_vars['lang'] ) ? $this->curlang : $this->model->get_language( $query->query_vars['lang'] ); | |
| 126 | + // If comments are queried with a 'lang' parameter, keeps only language codes. | |
| 127 | + if ( isset( $query->query_vars['lang'] ) ) { | |
| 128 | + $languages = is_string( $query->query_vars['lang'] ) ? explode( ',', $query->query_vars['lang'] ) : $query->query_vars['lang']; | |
| 129 | + if ( is_array( $languages ) ) { | |
| 130 | + $languages = array_map( array( $this->model, 'get_language' ), $languages ); | |
| 131 | + return array_filter( $languages ); | |
| 132 | + } | |
| 133 | + } | |
| 134 | + | |
| 135 | + if ( ! empty( $this->curlang ) ) { | |
| 136 | + return array( $this->curlang ); | |
| 137 | + } | |
| 138 | + | |
| 139 | + return array(); | |
| 80 | 140 | } |
| 81 | 141 | |
| 82 | 142 | /** |
| 83 | - * Adds language dependent cache domain when querying comments | |
| 84 | - * Useful as the 'lang' parameter is not included in cache key by WordPress | |
| 85 | - * Needed since WP 4.6 as comments have been added to persistent cache. See #36906, #37419 | |
| 143 | + * Adds a language dependent cache domain when querying comments. | |
| 144 | + * Useful as the 'lang' parameter is not included in cache key by WordPress. | |
| 145 | + * Needed since WP 4.6 as comments have been added to persistent cache. See #36906, #37419. | |
| 86 | 146 | * |
| 87 | 147 | * @since 2.0 |
| 88 | 148 | * |
| 89 | - * @param object $query | |
| 149 | + * @param WP_Comment_Query $query WP_Comment_Query object. | |
| 150 | + * @return void | |
| 90 | 151 | */ |
| 91 | 152 | public function parse_comment_query( $query ) { |
| 92 | - if ( $lang = $this->get_comments_queried_language( $query ) ) { | |
| 93 | - $key = '_' . ( is_array( $lang ) ? implode( ',', $lang ) : $this->model->get_language( $lang )->slug ); | |
| 153 | + $lang = $this->get_comments_queried_languages( $query ); | |
| 154 | + if ( ! empty( $lang ) ) { | |
| 155 | + $lang = wp_list_pluck( $lang, 'slug' ); | |
| 156 | + $key = '_' . implode( ',', $lang ); | |
| 94 | 157 | $query->query_vars['cache_domain'] = empty( $query->query_vars['cache_domain'] ) ? 'pll' . $key : $query->query_vars['cache_domain'] . $key; |
| 95 | 158 | } |
| 96 | 159 | } |
| 97 | 160 | |
| 98 | 161 | /** |
| 99 | - * Filters the comments according to the current language | |
| 100 | - * Used by the recent comments widget and admin language filter | |
| 162 | + * Filters the comments according to the current language. | |
| 163 | + * Used by the recent comments widget and admin language filter. | |
| 101 | 164 | * |
| 102 | 165 | * @since 0.2 |
| 103 | 166 | * |
| 104 | - * @param array $clauses sql clauses | |
| 105 | - * @param object $query WP_Comment_Query object | |
| 106 | - * @return array modified $clauses | |
| 167 | + * @param string[] $clauses SQL clauses. | |
| 168 | + * @param WP_Comment_Query $query WP_Comment_Query object. | |
| 169 | + * @return string[] Modified $clauses. | |
| 107 | 170 | */ |
| 108 | 171 | public function comments_clauses( $clauses, $query ) { |
| 109 | 172 | global $wpdb; |
| 110 | 173 | |
| 111 | - $lang = $this->get_comments_queried_language( $query ); | |
| 174 | + $lang = $this->get_comments_queried_languages( $query ); | |
| 112 | 175 | |
| 113 | 176 | if ( ! empty( $lang ) ) { |
| 114 | - // If this clause is not already added by WP | |
| 115 | - if ( ! strpos( $clauses['join'], '.ID' ) ) { | |
| 177 | + $lang = wp_list_pluck( $lang, 'slug' ); | |
| 178 | + | |
| 179 | + // If this clause is not already added by WP. | |
| 180 | + if ( ! preg_match( "#JOIN\s+{$wpdb->posts}\s+ON\s+(({$wpdb->posts}\.)?ID|({$wpdb->comments}\.)?comment_post_ID)\s*=#", $clauses['join'] ) ) { | |
| 116 | 181 | $clauses['join'] .= " JOIN $wpdb->posts ON $wpdb->posts.ID = $wpdb->comments.comment_post_ID"; |
| 117 | 182 | } |
| 118 | 183 | |
| 119 | - $clauses['join'] .= $this->model->post->join_clause(); | |
| 184 | + $clauses['join'] .= $this->model->post->join_clause(); | |
| 120 | 185 | $clauses['where'] .= $this->model->post->where_clause( $lang ); |
| 121 | 186 | } |
| 122 | 187 | return $clauses; |
| 123 | 188 | } |
| @@ -122,15 +187,15 @@ | ||
| 122 | 187 | return $clauses; |
| 123 | 188 | } |
| 124 | 189 | |
| 125 | 190 | /** |
| 126 | - * Filters get_pages per language | |
| 191 | + * Filters get_pages() per language. | |
| 127 | 192 | * |
| 128 | 193 | * @since 1.4 |
| 129 | 194 | * |
| 130 | - * @param array $pages an array of pages already queried | |
| 131 | - * @param array $args get_pages arguments | |
| 132 | - * @return array modified list of pages | |
| 195 | + * @param WP_Post[] $pages An array of pages already queried. | |
| 196 | + * @param array $args Array of get_pages() arguments. | |
| 197 | + * @return WP_Post[] Modified list of pages. | |
| 133 | 198 | */ |
| 134 | 199 | public function get_pages( $pages, $args ) { |
| 135 | 200 | if ( isset( $args['lang'] ) && empty( $args['lang'] ) ) { |
| 136 | 201 | return $pages; |
| @@ -143,38 +208,23 @@ | ||
| 143 | 208 | } |
| 144 | 209 | |
| 145 | 210 | static $once = false; |
| 146 | 211 | |
| 147 | - // Obliged to redo the get_pages query if we want to get the right number | |
| 148 | 212 | if ( ! empty( $args['number'] ) && ! $once ) { |
| 149 | - $once = true; // avoid infinite loop | |
| 213 | + // We are obliged to redo the get_pages() query if we want to get the right number. | |
| 214 | + $once = true; // Avoid infinite loop. | |
| 150 | 215 | |
| 151 | - $r = array( | |
| 152 | - 'lang' => 0, // So this query is not filtered | |
| 153 | - 'numberposts' => -1, | |
| 154 | - 'nopaging' => true, | |
| 155 | - 'post_type' => $args['post_type'], | |
| 156 | - 'fields' => 'ids', | |
| 157 | - 'tax_query' => array( | |
| 158 | - array( | |
| 159 | - 'taxonomy' => 'language', | |
| 160 | - 'field' => 'term_taxonomy_id', // Since WP 3.5 | |
| 161 | - 'terms' => $language->term_taxonomy_id, | |
| 162 | - 'operator' => 'NOT IN', | |
| 163 | - ), | |
| 164 | - ), | |
| 165 | - ); | |
| 166 | - | |
| 167 | - // Take care that 'exclude' argument accepts integer or strings too | |
| 168 | - $args['exclude'] = array_merge( wp_parse_id_list( $args['exclude'] ), get_posts( $r ) ); | |
| 169 | - $pages = get_pages( $args ); | |
| 216 | + // Take care that 'exclude' argument accepts integer or strings too. | |
| 217 | + $args['exclude'] = array_merge( wp_parse_id_list( $args['exclude'] ), $this->get_related_page_ids( $language, 'NOT IN', $args ) ); // phpcs:ignore WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_exclude | |
| 218 | + $numbered_pages = get_pages( $args ); | |
| 219 | + $pages = ! $numbered_pages ? $pages : $numbered_pages; | |
| 170 | 220 | } |
| 171 | 221 | |
| 172 | 222 | $ids = wp_list_pluck( $pages, 'ID' ); |
| 173 | 223 | |
| 174 | - // Filters the queried list of pages by language | |
| 175 | 224 | if ( ! $once ) { |
| 176 | - $ids = array_intersect( $ids, $this->model->post->get_objects_in_language( $language ) ); | |
| 225 | + // Filters the queried list of pages by language. | |
| 226 | + $ids = array_intersect( $ids, $this->get_related_page_ids( $language, 'IN', $args ) ); | |
| 177 | 227 | |
| 178 | 228 | foreach ( $pages as $key => $page ) { |
| 179 | 229 | if ( ! in_array( $page->ID, $ids ) ) { |
| 180 | 230 | unset( $pages[ $key ] ); |
| @@ -180,47 +230,95 @@ | ||
| 180 | 230 | unset( $pages[ $key ] ); |
| 181 | 231 | } |
| 182 | 232 | } |
| 183 | 233 | |
| 184 | - $pages = array_values( $pages ); // In case 3rd parties suppose the existence of $pages[0] | |
| 234 | + $pages = array_values( $pages ); // In case 3rd parties suppose the existence of $pages[0]. | |
| 185 | 235 | } |
| 186 | 236 | |
| 187 | - // Not done by WP but extremely useful for performance when manipulating taxonomies | |
| 237 | + // Not done by WP but extremely useful for performance when manipulating taxonomies. | |
| 188 | 238 | update_object_term_cache( $ids, $args['post_type'] ); |
| 189 | 239 | |
| 190 | - $once = false; // In case get_pages is called another time | |
| 240 | + $once = false; // In case get_pages() is called another time. | |
| 191 | 241 | return $pages; |
| 192 | 242 | } |
| 193 | 243 | |
| 194 | 244 | /** |
| 195 | - * Modifies the sql request for get_adjacent_post to filter by the current language | |
| 245 | + * Filters the WP_Query in get_pages() per language. | |
| 196 | 246 | * |
| 247 | + * @since 3.4.3 | |
| 248 | + * | |
| 249 | + * @param array $query_args Array of arguments passed to WP_Query. | |
| 250 | + * @param array $parsed_args Array of get_pages() arguments. | |
| 251 | + * @return array Array of arguments passed to WP_Query with the language. | |
| 252 | + */ | |
| 253 | + public function get_pages_query_args( $query_args, $parsed_args ) { | |
| 254 | + if ( isset( $parsed_args['lang'] ) ) { | |
| 255 | + $query_args['lang'] = $parsed_args['lang']; | |
| 256 | + } | |
| 257 | + | |
| 258 | + return $query_args; | |
| 259 | + } | |
| 260 | + | |
| 261 | + /** | |
| 262 | + * Get page ids related to a get_pages() in or not in a given language. | |
| 263 | + * | |
| 264 | + * @since 3.2 | |
| 265 | + * | |
| 266 | + * @param PLL_Language $language The language to use in the relationship | |
| 267 | + * @param string $relation 'IN' or 'NOT IN'. | |
| 268 | + * @param array $args Array of get_pages() arguments. | |
| 269 | + * @return int[] | |
| 270 | + */ | |
| 271 | + protected function get_related_page_ids( $language, $relation, $args ) { | |
| 272 | + $r = array( | |
| 273 | + 'lang' => '', // Ensure this query is not filtered. | |
| 274 | + 'numberposts' => -1, | |
| 275 | + 'nopaging' => true, | |
| 276 | + 'post_type' => $args['post_type'], | |
| 277 | + 'post_status' => $args['post_status'], | |
| 278 | + 'fields' => 'ids', | |
| 279 | + 'tax_query' => array( | |
| 280 | + array( | |
| 281 | + 'taxonomy' => 'language', | |
| 282 | + 'field' => 'term_taxonomy_id', // Since WP 3.5. | |
| 283 | + 'terms' => $language->get_tax_prop( 'language', 'term_taxonomy_id' ), | |
| 284 | + 'operator' => $relation, | |
| 285 | + ), | |
| 286 | + ), | |
| 287 | + ); | |
| 288 | + | |
| 289 | + return get_posts( $r ); | |
| 290 | + } | |
| 291 | + | |
| 292 | + /** | |
| 293 | + * Modifies the sql request for get_adjacent_post to filter by the current language. | |
| 294 | + * | |
| 197 | 295 | * @since 0.1 |
| 198 | 296 | * |
| 199 | 297 | * @param string $sql The JOIN clause in the SQL. |
| 200 | 298 | * @param bool $in_same_term Whether post should be in a same taxonomy term. |
| 201 | - * @param array $excluded_terms Array of excluded term IDs. | |
| 299 | + * @param int[] $excluded_terms Array of excluded term IDs. | |
| 202 | 300 | * @param string $taxonomy Taxonomy. Used to identify the term used when `$in_same_term` is true. |
| 203 | 301 | * @param WP_Post $post WP_Post object. |
| 204 | - * @return string modified JOIN clause | |
| 302 | + * @return string Modified JOIN clause. | |
| 205 | 303 | */ |
| 206 | - public function posts_join( $sql, $in_same_term, $excluded_terms, $taxonomy = '', $post = null ) { | |
| 304 | + public function posts_join( $sql, $in_same_term, $excluded_terms, $taxonomy, $post ) { | |
| 207 | 305 | return $this->model->is_translated_post_type( $post->post_type ) && ! empty( $this->curlang ) ? $sql . $this->model->post->join_clause( 'p' ) : $sql; |
| 208 | 306 | } |
| 209 | 307 | |
| 210 | 308 | /** |
| 211 | - * Modifies the sql request for wp_get_archives and get_adjacent_post to filter by the current language | |
| 309 | + * Modifies the sql request for wp_get_archives and get_adjacent_post to filter by the current language. | |
| 212 | 310 | * |
| 213 | 311 | * @since 0.1 |
| 214 | 312 | * |
| 215 | 313 | * @param string $sql The WHERE clause in the SQL. |
| 216 | 314 | * @param bool $in_same_term Whether post should be in a same taxonomy term. |
| 217 | - * @param array $excluded_terms Array of excluded term IDs. | |
| 315 | + * @param int[] $excluded_terms Array of excluded term IDs. | |
| 218 | 316 | * @param string $taxonomy Taxonomy. Used to identify the term used when `$in_same_term` is true. |
| 219 | 317 | * @param WP_Post $post WP_Post object. |
| 220 | - * @return string modified WHERE clause | |
| 318 | + * @return string Modified WHERE clause. | |
| 221 | 319 | */ |
| 222 | - public function posts_where( $sql, $in_same_term, $excluded_terms, $taxonomy = '', $post = null ) { | |
| 320 | + public function posts_where( $sql, $in_same_term, $excluded_terms, $taxonomy, $post ) { | |
| 223 | 321 | return $this->model->is_translated_post_type( $post->post_type ) && ! empty( $this->curlang ) ? $sql . $this->model->post->where_clause( $this->curlang ) : $sql; |
| 224 | 322 | } |
| 225 | 323 | |
| 226 | 324 | /** |
| @@ -231,37 +329,15 @@ | ||
| 231 | 329 | * @param string $output language attributes |
| 232 | 330 | * @return string |
| 233 | 331 | */ |
| 234 | 332 | public function language_attributes( $output ) { |
| 235 | - if ( $language = $this->model->get_language( is_admin() ? get_user_locale() : get_locale() ) ) { | |
| 236 | - $output = str_replace( '"' . get_bloginfo( 'language' ) . '"', '"' . $language->get_locale( 'display' ) . '"', $output ); | |
| 237 | - } | |
| 238 | - return $output; | |
| 239 | - } | |
| 333 | + $language = $this->model->get_language( determine_locale() ); | |
| 240 | 334 | |
| 241 | - /** | |
| 242 | - * Prevents deleting all the translations of the default category | |
| 243 | - * | |
| 244 | - * @since 2.1 | |
| 245 | - * | |
| 246 | - * @param array $caps The user's actual capabilities. | |
| 247 | - * @param string $cap Capability name. | |
| 248 | - * @param int $user_id The user ID. | |
| 249 | - * @param array $args Adds the context to the cap. The category id. | |
| 250 | - * @return array | |
| 251 | - */ | |
| 252 | - public function fix_delete_default_category( $caps, $cap, $user_id, $args ) { | |
| 253 | - if ( 'delete_term' === $cap ) { | |
| 254 | - $term = get_term( reset( $args ) ); // Since WP 4.4, we can get the term to get the taxonomy | |
| 255 | - if ( $term instanceof WP_Term ) { | |
| 256 | - $default_cat = get_option( 'default_' . $term->taxonomy ); | |
| 257 | - if ( $default_cat && array_intersect( $args, $this->model->term->get_translations( $default_cat ) ) ) { | |
| 258 | - $caps[] = 'do_not_allow'; | |
| 259 | - } | |
| 260 | - } | |
| 335 | + if ( ! $language ) { | |
| 336 | + return $output; | |
| 261 | 337 | } |
| 262 | 338 | |
| 263 | - return $caps; | |
| 339 | + return str_replace( '"' . get_bloginfo( 'language' ) . '"', '"' . $language->get_locale( 'display' ) . '"', $output ); | |
| 264 | 340 | } |
| 265 | 341 | |
| 266 | 342 | /** |
| 267 | 343 | * Translates the site title in emails sent to the user (change email, reset password) |
| @@ -268,10 +344,10 @@ | ||
| 268 | 344 | * It is necessary to filter the email because WP evaluates the site title before calling switch_to_locale() |
| 269 | 345 | * |
| 270 | 346 | * @since 2.1.3 |
| 271 | 347 | * |
| 272 | - * @param array $email | |
| 273 | - * @return array | |
| 348 | + * @param string[] $email Email contents. | |
| 349 | + * @return string[] Translated email contents. | |
| 274 | 350 | */ |
| 275 | 351 | public function translate_user_email( $email ) { |
| 276 | 352 | $blog_name = wp_specialchars_decode( pll__( get_option( 'blogname' ) ), ENT_QUOTES ); |
| 277 | 353 | $email['subject'] = sprintf( $email['subject'], $blog_name ); |
| @@ -318,9 +394,9 @@ | ||
| 318 | 394 | * |
| 319 | 395 | * @since 2.3.6 |
| 320 | 396 | * |
| 321 | 397 | * @param array $exporters Personal data exporters |
| 322 | - * @retun array | |
| 398 | + * @return array | |
| 323 | 399 | */ |
| 324 | 400 | public function register_personal_data_exporter( $exporters ) { |
| 325 | 401 | $exporters[] = array( |
| 326 | 402 | 'exporter_friendly_name' => __( 'Translated user descriptions', 'polylang' ), |
| @@ -343,9 +419,9 @@ | ||
| 343 | 419 | $user_data_to_export = array(); |
| 344 | 420 | |
| 345 | 421 | if ( $user = get_user_by( 'email', $email_address ) ) { |
| 346 | 422 | foreach ( $this->model->get_languages_list() as $lang ) { |
| 347 | - if ( $lang->slug !== $this->options['default_lang'] && $value = get_user_meta( $user->ID, 'description_' . $lang->slug, true ) ) { | |
| 423 | + if ( ! $lang->is_default && $value = get_user_meta( $user->ID, 'description_' . $lang->slug, true ) ) { | |
| 348 | 424 | $user_data_to_export[] = array( |
| 349 | 425 | /* translators: %s is a language native name */ |
| 350 | 426 | 'name' => sprintf( __( 'User description - %s', 'polylang' ), $lang->name ), |
| 351 | 427 | 'value' => $value, |
| @@ -366,6 +442,34 @@ | ||
| 366 | 442 | return array( |
| 367 | 443 | 'data' => $data_to_export, |
| 368 | 444 | 'done' => true, |
| 369 | 445 | ); |
| 446 | + } | |
| 447 | + | |
| 448 | + /** | |
| 449 | + * Filters default query arguments for checking if a term exists. | |
| 450 | + * In `term_exists()`, WP 6.0 uses `get_terms()`, which is filtered by language by Polylang. | |
| 451 | + * This filter prevents `term_exists()` to be filtered by language. | |
| 452 | + * | |
| 453 | + * @since 3.2 | |
| 454 | + * | |
| 455 | + * @param array $defaults An array of arguments passed to get_terms(). | |
| 456 | + * @param int|string $term The term to check. Accepts term ID, slug, or name. | |
| 457 | + * @param string $taxonomy The taxonomy name to use. An empty string indicates the search is against all taxonomies. | |
| 458 | + * @return array | |
| 459 | + */ | |
| 460 | + public function term_exists_default_query_args( $defaults, $term, $taxonomy ) { | |
| 461 | + if ( ! empty( $taxonomy ) && ! $this->model->is_translated_taxonomy( $taxonomy ) ) { | |
| 462 | + return $defaults; | |
| 463 | + } | |
| 464 | + | |
| 465 | + if ( ! is_array( $defaults ) ) { | |
| 466 | + $defaults = array(); | |
| 467 | + } | |
| 468 | + | |
| 469 | + if ( ! isset( $defaults['lang'] ) ) { | |
| 470 | + $defaults['lang'] = ''; | |
| 471 | + } | |
| 472 | + | |
| 473 | + return $defaults; | |
| 370 | 474 | } |
| 371 | 475 | } |