| @@ -1,106 +1,42 @@ | ||
| 1 | 1 | <?php |
| 2 | -/** | |
| 3 | - * @package Polylang | |
| 4 | - */ | |
| 5 | 2 | |
| 6 | 3 | /** |
| 7 | - * Setups the objects languages and translations model. | |
| 4 | + * Setups the objects languages and translations model | |
| 8 | 5 | * |
| 9 | 6 | * @since 1.8 |
| 10 | 7 | */ |
| 11 | 8 | abstract class PLL_Translated_Object { |
| 12 | - /** | |
| 13 | - * @var PLL_Model | |
| 14 | - */ | |
| 15 | 9 | public $model; |
| 10 | + protected $object_type, $tax_language, $tax_translations, $tax_tt; | |
| 16 | 11 | |
| 17 | 12 | /** |
| 18 | - * Object type to use when registering the taxonomies. | |
| 19 | - * Left empty for posts. | |
| 13 | + * Constructor | |
| 20 | 14 | * |
| 21 | - * @var string|null | |
| 22 | - */ | |
| 23 | - protected $object_type; | |
| 24 | - | |
| 25 | - /** | |
| 26 | - * Object type to use when checking capabilities. | |
| 27 | - * | |
| 28 | - * @var string | |
| 29 | - */ | |
| 30 | - protected $type; | |
| 31 | - | |
| 32 | - /** | |
| 33 | - * Taxonomy name for the languages. | |
| 34 | - * | |
| 35 | - * @var string | |
| 36 | - */ | |
| 37 | - protected $tax_language; | |
| 38 | - | |
| 39 | - /** | |
| 40 | - * Taxonomy name for the translation groups. | |
| 41 | - * | |
| 42 | - * @var string | |
| 43 | - */ | |
| 44 | - protected $tax_translations; | |
| 45 | - | |
| 46 | - /** | |
| 47 | - * PLL_Language property name for the term_taxonomy id. | |
| 48 | - * | |
| 49 | - * @var string | |
| 50 | - */ | |
| 51 | - protected $tax_tt; | |
| 52 | - | |
| 53 | - /** | |
| 54 | - * Constructor. | |
| 55 | - * | |
| 56 | 15 | * @since 1.8 |
| 57 | 16 | * |
| 58 | - * @param PLL_Model $model Instance of PLL_Model. | |
| 17 | + * @param object $model | |
| 59 | 18 | */ |
| 60 | 19 | public function __construct( &$model ) { |
| 61 | 20 | $this->model = &$model; |
| 62 | 21 | |
| 63 | - /* | |
| 64 | - * Register our taxonomies as soon as possible. | |
| 65 | - * This is early registration, not ready for rewrite rules as $wp_rewrite will be setup later. | |
| 66 | - */ | |
| 22 | + // register our taxonomies as soon as possible | |
| 23 | + // this is early registration, not ready for rewrite rules as wp_rewrite will be setup later | |
| 67 | 24 | $args = array( 'label' => false, 'public' => false, 'query_var' => false, 'rewrite' => false, '_pll' => true ); |
| 68 | 25 | register_taxonomy( $this->tax_language, $this->object_type, $args ); |
| 69 | - $args['update_count_callback'] = '_update_generic_term_count'; // Count *all* objects to avoid deleting in clean_translations_terms. | |
| 26 | + $args['update_count_callback'] = '_update_generic_term_count'; // count *all* posts to avoid deleting in clean_translations_terms | |
| 70 | 27 | register_taxonomy( $this->tax_translations, $this->object_type, $args ); |
| 71 | 28 | } |
| 72 | 29 | |
| 73 | 30 | /** |
| 74 | - * Stores the language in the database. | |
| 31 | + * Wrap wp_get_object_terms to cache it and return only one object | |
| 32 | + * inspired by the function get_the_terms | |
| 75 | 33 | * |
| 76 | - * @since 0.6 | |
| 77 | - * | |
| 78 | - * @param int $id Object id. | |
| 79 | - * @param int|string|PLL_Language $lang Language (term_id or slug or object). | |
| 80 | - * @return void | |
| 81 | - */ | |
| 82 | - abstract public function set_language( $id, $lang ); | |
| 83 | - | |
| 84 | - /** | |
| 85 | - * Returns the language of an object. | |
| 86 | - * | |
| 87 | - * @since 0.1 | |
| 88 | - * | |
| 89 | - * @param int $id Object id. | |
| 90 | - * @return PLL_Language|false PLL_Language object, false if no language is associated to that object. | |
| 91 | - */ | |
| 92 | - abstract public function get_language( $id ); | |
| 93 | - | |
| 94 | - /** | |
| 95 | - * Wrap wp_get_object_terms() to cache it and return only one object. | |
| 96 | - * inspired by the WordPress function get_the_terms(). | |
| 97 | - * | |
| 98 | 34 | * @since 1.2 |
| 99 | 35 | * |
| 100 | - * @param int $object_id Object id ( typically a post_id or term_id ). | |
| 101 | - * @param string $taxonomy Polylang taxonomy depending if we are looking for a post ( or term ) language ( or translation ). | |
| 102 | - * @return WP_Term|false The term associated to the object in the requested taxonomy if it exists, false otherwise. | |
| 36 | + * @param int $object_id post_id or term_id | |
| 37 | + * @param string $taxonomy Polylang taxonomy depending if we are looking for a post ( or term ) language ( or translation ) | |
| 38 | + * @return bool|object the term associated to the object in the requested taxonomy if exists, false otherwise | |
| 103 | 39 | */ |
| 104 | 40 | public function get_object_term( $object_id, $taxonomy ) { |
| 105 | 41 | if ( empty( $object_id ) || is_wp_error( $object_id ) ) { |
| 106 | 42 | return false; |
| @@ -106,32 +42,24 @@ | ||
| 106 | 42 | return false; |
| 107 | 43 | } |
| 108 | 44 | |
| 109 | 45 | $object_id = (int) $object_id; |
| 110 | - | |
| 111 | - if ( $object_id < 0 ) { | |
| 112 | - return false; | |
| 113 | - } | |
| 114 | - | |
| 115 | 46 | $term = get_object_term_cache( $object_id, $taxonomy ); |
| 116 | 47 | |
| 117 | 48 | if ( false === $term ) { |
| 118 | - // Query language and translations at the same time. | |
| 49 | + // query language and translations at the same time | |
| 119 | 50 | $taxonomies = array( $this->tax_language, $this->tax_translations ); |
| 120 | 51 | |
| 121 | - // Query terms. | |
| 122 | - $terms = array(); | |
| 123 | - $object_terms = wp_get_object_terms( $object_id, $taxonomies, array( 'update_term_meta_cache' => false ) ); | |
| 124 | - if ( is_array( $object_terms ) ) { | |
| 125 | - foreach ( $object_terms as $t ) { | |
| 126 | - $terms[ $t->taxonomy ] = $t; | |
| 127 | - if ( $t->taxonomy == $taxonomy ) { | |
| 128 | - $term = $t; | |
| 129 | - } | |
| 52 | + // query terms | |
| 53 | + foreach ( wp_get_object_terms( $object_id, $taxonomies, array( 'update_term_meta_cache' => false ) ) as $t ) { | |
| 54 | + $terms[ $t->taxonomy ] = $t; | |
| 55 | + if ( $t->taxonomy == $taxonomy ) { | |
| 56 | + $term = $t; | |
| 130 | 57 | } |
| 131 | 58 | } |
| 132 | 59 | |
| 133 | - // Stores it the way WP expects it. Set an empty cache if no term was found in the taxonomy. | |
| 60 | + // store it the way WP wants it | |
| 61 | + // set an empty cache if no term found in the taxonomy | |
| 134 | 62 | foreach ( $taxonomies as $tax ) { |
| 135 | 63 | wp_cache_add( $object_id, empty( $terms[ $tax ] ) ? array() : array( $terms[ $tax ] ), $tax . '_relationships' ); |
| 136 | 64 | } |
| 137 | 65 | } |
| @@ -142,69 +70,68 @@ | ||
| 142 | 70 | return empty( $term ) ? false : $term; |
| 143 | 71 | } |
| 144 | 72 | |
| 145 | 73 | /** |
| 146 | - * Tells whether a translation term must be updated. | |
| 74 | + * Tells whether a translation term must be updated | |
| 147 | 75 | * |
| 148 | 76 | * @since 2.3 |
| 149 | 77 | * |
| 150 | - * @param int $id Object id ( typically a post_id or term_id ). | |
| 151 | - * @param int[] $translations An associative array of translations with language code as key and translation id as value. | |
| 152 | - * @return bool | |
| 78 | + * @param array $id Post id or term id | |
| 79 | + * @param array $translations An associative array of translations with language code as key and translation id as value | |
| 153 | 80 | */ |
| 154 | 81 | protected function should_update_translation_group( $id, $translations ) { |
| 155 | - // Don't do anything if no translations have been added to the group. | |
| 156 | - $old_translations = $this->get_translations( $id ); // Includes at least $id itself. | |
| 82 | + // Don't do anything if no translations have been added to the group | |
| 83 | + $old_translations = $this->get_translations( $id ); // Includes at least $id itself | |
| 157 | 84 | return count( array_diff_assoc( $translations, $old_translations ) ) > 0; |
| 158 | 85 | } |
| 159 | 86 | |
| 160 | 87 | /** |
| 161 | - * Saves translations for posts or terms. | |
| 88 | + * Saves translations for posts or terms | |
| 162 | 89 | * |
| 163 | 90 | * @since 0.5 |
| 164 | 91 | * |
| 165 | - * @param int $id Object id ( typically a post_id or term_id ). | |
| 166 | - * @param int[] $translations An associative array of translations with language code as key and translation id as value. | |
| 167 | - * @return void | |
| 92 | + * @param int $id Post id or term id | |
| 93 | + * @param array $translations An associative array of translations with language code as key and translation id as value | |
| 168 | 94 | */ |
| 169 | 95 | public function save_translations( $id, $translations ) { |
| 170 | 96 | $id = (int) $id; |
| 171 | 97 | |
| 172 | - if ( ( $lang = $this->get_language( $id ) ) && is_array( $translations ) ) { | |
| 173 | - // Sanitize the translations array. | |
| 98 | + if ( ( $lang = $this->get_language( $id ) ) && isset( $translations ) && is_array( $translations ) ) { | |
| 99 | + // sanitize the translations array | |
| 174 | 100 | $translations = array_map( 'intval', $translations ); |
| 175 | - $translations = array_merge( array( $lang->slug => $id ), $translations ); // Make sure this object is in translations. | |
| 176 | - $translations = array_diff( $translations, array( 0 ) ); // Don't keep non translated languages. | |
| 177 | - $translations = array_intersect_key( $translations, array_flip( $this->model->get_languages_list( array( 'fields' => 'slug' ) ) ) ); // Keep only valid languages slugs as keys. | |
| 101 | + $translations = array_merge( array( $lang->slug => $id ), $translations ); // make sure this object is in translations | |
| 102 | + $translations = array_diff( $translations, array( 0 ) ); // don't keep non translated languages | |
| 103 | + $translations = array_intersect_key( $translations, array_flip( $this->model->get_languages_list( array( 'fields' => 'slug' ) ) ) ); // keep only valid languages slugs as keys | |
| 178 | 104 | |
| 179 | - // Unlink removed translations. | |
| 105 | + // unlink removed translations | |
| 180 | 106 | $old_translations = $this->get_translations( $id ); |
| 181 | 107 | foreach ( array_diff_assoc( $old_translations, $translations ) as $object_id ) { |
| 182 | 108 | $this->delete_translation( $object_id ); |
| 183 | 109 | } |
| 184 | 110 | |
| 185 | - // Check id we need to create or update the translation group. | |
| 111 | + // Check id we need to create or update the translation group | |
| 186 | 112 | if ( $this->should_update_translation_group( $id, $translations ) ) { |
| 187 | 113 | $terms = wp_get_object_terms( $translations, $this->tax_translations ); |
| 188 | 114 | $term = reset( $terms ); |
| 189 | 115 | |
| 190 | - // Create a new term if necessary. | |
| 116 | + // create a new term if necessary | |
| 191 | 117 | if ( empty( $term ) ) { |
| 192 | - wp_insert_term( $group = uniqid( 'pll_' ), $this->tax_translations, array( 'description' => maybe_serialize( $translations ) ) ); | |
| 193 | - } else { | |
| 194 | - // Take care not to overwrite extra data stored in the description field, if any. | |
| 195 | - $d = maybe_unserialize( $term->description ); | |
| 196 | - $d = is_array( $d ) ? array_diff_key( $d, $old_translations ) : array(); // Remove old translations. | |
| 197 | - $d = array_merge( $d, $translations ); // Add new one. | |
| 198 | - wp_update_term( $group = (int) $term->term_id, $this->tax_translations, array( 'description' => maybe_serialize( $d ) ) ); | |
| 118 | + wp_insert_term( $group = uniqid( 'pll_' ), $this->tax_translations, array( 'description' => serialize( $translations ) ) ); | |
| 199 | 119 | } |
| 120 | + else { | |
| 121 | + // take care not to overwrite extra data stored in description field, if any | |
| 122 | + $d = unserialize( $term->description ); | |
| 123 | + $d = is_array( $d ) ? array_diff_key( $d, $old_translations ) : array(); // remove old translations | |
| 124 | + $d = array_merge( $d, $translations ); // add new one | |
| 125 | + wp_update_term( $group = (int) $term->term_id, $this->tax_translations, array( 'description' => serialize( $d ) ) ); | |
| 126 | + } | |
| 200 | 127 | |
| 201 | - // Link all translations to the new term. | |
| 128 | + // link all translations to the new term | |
| 202 | 129 | foreach ( $translations as $p ) { |
| 203 | 130 | wp_set_object_terms( $p, $group, $this->tax_translations ); |
| 204 | 131 | } |
| 205 | 132 | |
| 206 | - // Clean now unused translation groups. | |
| 133 | + // clean now unused translation groups | |
| 207 | 134 | foreach ( wp_list_pluck( $terms, 'term_id' ) as $term_id ) { |
| 208 | 135 | $term = get_term( $term_id, $this->tax_translations ); |
| 209 | 136 | if ( empty( $term->count ) ) { |
| 210 | 137 | wp_delete_term( $term_id, $this->tax_translations ); |
| @@ -214,14 +141,13 @@ | ||
| 214 | 141 | } |
| 215 | 142 | } |
| 216 | 143 | |
| 217 | 144 | /** |
| 218 | - * Deletes a translation of a post or term. | |
| 145 | + * Deletes a translation of a post or term | |
| 219 | 146 | * |
| 220 | 147 | * @since 0.5 |
| 221 | 148 | * |
| 222 | - * @param int $id Object id ( typically a post_id or term_id ). | |
| 223 | - * @return void | |
| 149 | + * @param int $id post id or term id | |
| 224 | 150 | */ |
| 225 | 151 | public function delete_translation( $id ) { |
| 226 | 152 | $id = (int) $id; |
| 227 | 153 | $term = $this->get_object_term( $id, $this->tax_translations ); |
| @@ -226,40 +152,39 @@ | ||
| 226 | 152 | $id = (int) $id; |
| 227 | 153 | $term = $this->get_object_term( $id, $this->tax_translations ); |
| 228 | 154 | |
| 229 | 155 | if ( ! empty( $term ) ) { |
| 230 | - $d = maybe_unserialize( $term->description ); | |
| 231 | - if ( is_array( $d ) ) { | |
| 232 | - $slug = array_search( $id, $this->get_translations( $id ) ); // In case some plugin stores the same value with different key. | |
| 233 | - unset( $d[ $slug ] ); | |
| 234 | - } | |
| 156 | + $d = unserialize( $term->description ); | |
| 157 | + $slug = array_search( $id, $this->get_translations( $id ) ); // in case some plugin stores the same value with different key | |
| 158 | + unset( $d[ $slug ] ); | |
| 235 | 159 | |
| 236 | 160 | if ( empty( $d ) ) { |
| 237 | 161 | wp_delete_term( (int) $term->term_id, $this->tax_translations ); |
| 238 | - } else { | |
| 239 | - wp_update_term( (int) $term->term_id, $this->tax_translations, array( 'description' => maybe_serialize( $d ) ) ); | |
| 240 | 162 | } |
| 163 | + else { | |
| 164 | + wp_update_term( (int) $term->term_id, $this->tax_translations, array( 'description' => serialize( $d ) ) ); | |
| 165 | + } | |
| 241 | 166 | } |
| 242 | 167 | } |
| 243 | 168 | |
| 244 | 169 | /** |
| 245 | - * Returns an array of translations of a post or term. | |
| 170 | + * Returns an array of translations of a post or term | |
| 246 | 171 | * |
| 247 | 172 | * @since 0.5 |
| 248 | 173 | * |
| 249 | - * @param int $id Object id ( typically a post_id or term_id ). | |
| 250 | - * @return int[] An associative array of translations with language code as key and translation id as value. | |
| 174 | + * @param int $id post id or term id | |
| 175 | + * @return array an associative array of translations with language code as key and translation id as value | |
| 251 | 176 | */ |
| 252 | 177 | public function get_translations( $id ) { |
| 253 | 178 | $term = $this->get_object_term( $id, $this->tax_translations ); |
| 254 | - $translations = empty( $term ) ? array() : maybe_unserialize( $term->description ); | |
| 179 | + $translations = empty( $term ) ? array() : unserialize( $term->description ); | |
| 255 | 180 | |
| 256 | - // Make sure we return only translations ( thus we allow plugins to store other information in the array ). | |
| 181 | + // make sure we return only translations ( thus we allow plugins to store other information in the array ) | |
| 257 | 182 | if ( is_array( $translations ) ) { |
| 258 | 183 | $translations = array_intersect_key( $translations, array_flip( $this->model->get_languages_list( array( 'fields' => 'slug' ) ) ) ); |
| 259 | 184 | } |
| 260 | 185 | |
| 261 | - // Make sure to return at least the passed object in its translation array. | |
| 186 | + // make sure to return at least the passed post or term in its translation array | |
| 262 | 187 | if ( empty( $translations ) && $lang = $this->get_language( $id ) ) { |
| 263 | 188 | $translations = array( $lang->slug => $id ); |
| 264 | 189 | } |
| 265 | 190 | |
| @@ -266,15 +191,15 @@ | ||
| 266 | 191 | return $translations; |
| 267 | 192 | } |
| 268 | 193 | |
| 269 | 194 | /** |
| 270 | - * Returns the id of the translation of a post or term. | |
| 195 | + * Returns the id of the translation of a post or term | |
| 271 | 196 | * |
| 272 | 197 | * @since 0.5 |
| 273 | 198 | * |
| 274 | - * @param int $id Object id ( typically a post_id or term_id ). | |
| 275 | - * @param PLL_Language|string $lang Language ( slug or object ). | |
| 276 | - * @return int|false Object id of the translation, false if there is none. | |
| 199 | + * @param int $id post id or term id | |
| 200 | + * @param object|string $lang object or slug | |
| 201 | + * @return bool|int post id or term id of the translation, false if there is none | |
| 277 | 202 | */ |
| 278 | 203 | public function get_translation( $id, $lang ) { |
| 279 | 204 | if ( ! $lang = $this->model->get_language( $lang ) ) { |
| 280 | 205 | return false; |
| @@ -289,58 +214,44 @@ | ||
| 289 | 214 | * Among the object and its translations, returns the id of the object which is in $lang |
| 290 | 215 | * |
| 291 | 216 | * @since 0.1 |
| 292 | 217 | * |
| 293 | - * @param int $id Object id ( typically a post_id or term_id ). | |
| 294 | - * @param int|string|PLL_Language $lang Language ( term_id or slug or object ). | |
| 295 | - * @return int|false The translation object id if exists, otherwise the passed id, false if the passed object has no language. | |
| 218 | + * @param int $id post id or term id | |
| 219 | + * @param int|string|object $lang language ( term_id or slug or object ) | |
| 220 | + * @return bool|int the translation post id or term id if exists, otherwise the post id or term id, false if the post has no language | |
| 296 | 221 | */ |
| 297 | 222 | public function get( $id, $lang ) { |
| 298 | 223 | $id = (int) $id; |
| 299 | - $lang = $this->model->get_language( $lang ); | |
| 300 | - $obj_lang = $this->get_language( $id ); | |
| 301 | - if ( empty( $lang ) || empty( $obj_lang ) ) { | |
| 224 | + $obj_lang = $this->get_language( $id ); // FIXME is this necessary? | |
| 225 | + if ( ! $lang || ! $obj_lang ) { | |
| 302 | 226 | return false; |
| 303 | 227 | } |
| 304 | 228 | |
| 229 | + $lang = $this->model->get_language( $lang ); | |
| 305 | 230 | return $obj_lang->term_id == $lang->term_id ? $id : $this->get_translation( $id, $lang ); |
| 306 | 231 | } |
| 307 | 232 | |
| 308 | 233 | /** |
| 309 | - * A join clause to add to sql queries when filtering by language is needed directly in query. | |
| 234 | + * A where clause to add to sql queries when filtering by language is needed directly in query | |
| 310 | 235 | * |
| 311 | 236 | * @since 1.2 |
| 312 | 237 | * |
| 313 | - * @param string $alias Optional alias for object table. | |
| 314 | - * @return string Join clause. | |
| 238 | + * @param object|array|string $lang a PLL_Language object or a comma separated list of language slug or an array of language slugs | |
| 239 | + * @return string where clause | |
| 315 | 240 | */ |
| 316 | - abstract public function join_clause( $alias = '' ); | |
| 317 | - | |
| 318 | - /** | |
| 319 | - * A where clause to add to sql queries when filtering by language is needed directly in query. | |
| 320 | - * | |
| 321 | - * @since 1.2 | |
| 322 | - * | |
| 323 | - * @param PLL_Language|string|string[] $lang PLL_Language object or a comma separated list of language slug or an array of language slugs. | |
| 324 | - * @return string Where clause. | |
| 325 | - */ | |
| 326 | 241 | public function where_clause( $lang ) { |
| 242 | + global $wpdb; | |
| 327 | 243 | $tt_id = $this->tax_tt; |
| 328 | 244 | |
| 329 | - /* | |
| 330 | - * $lang is an object. | |
| 331 | - * This is generally the case if the query is coming from Polylang. | |
| 332 | - */ | |
| 245 | + // $lang is an object | |
| 246 | + // generally the case if the query is coming from Polylang | |
| 333 | 247 | if ( is_object( $lang ) ) { |
| 334 | 248 | return ' AND pll_tr.term_taxonomy_id = ' . absint( $lang->$tt_id ); |
| 335 | 249 | } |
| 336 | 250 | |
| 337 | - /* | |
| 338 | - * $lang is a comma separated list of slugs ( or an array of slugs ). | |
| 339 | - * This is generally the case is the query is coming from outside with a 'lang' parameter. | |
| 340 | - */ | |
| 341 | - $slugs = is_array( $lang ) ? $lang : explode( ',', $lang ); | |
| 342 | - $languages = array(); | |
| 251 | + // $lang is a comma separated list of slugs ( or an array of slugs ) | |
| 252 | + // generally the case is the query is coming from outside with 'lang' parameter | |
| 253 | + $slugs = is_array( $lang ) ? $lang : explode( ',', $lang ); | |
| 343 | 254 | foreach ( $slugs as $slug ) { |
| 344 | 255 | $languages[] = absint( $this->model->get_language( $slug )->$tt_id ); |
| 345 | 256 | } |
| 346 | 257 | |
| @@ -347,72 +258,18 @@ | ||
| 347 | 258 | return ' AND pll_tr.term_taxonomy_id IN ( ' . implode( ',', $languages ) . ' )'; |
| 348 | 259 | } |
| 349 | 260 | |
| 350 | 261 | /** |
| 351 | - * Returns ids of objects in a language similarly to get_objects_in_term() for a taxonomy. | |
| 352 | - * It is faster than get_objects_in_term() as it avoids a JOIN. | |
| 262 | + * Returns ids of objects in a language similarly to get_objects_in_term for a taxonomy | |
| 263 | + * faster than get_objects_in_term as it avoids a JOIN | |
| 353 | 264 | * |
| 354 | 265 | * @since 1.4 |
| 355 | 266 | * |
| 356 | - * @param PLL_Language $lang PLL_Language object. | |
| 357 | - * @return int[] Object ids. | |
| 267 | + * @param object $lang a PLL_Language object | |
| 268 | + * @return array | |
| 358 | 269 | */ |
| 359 | 270 | public function get_objects_in_language( $lang ) { |
| 360 | 271 | global $wpdb; |
| 361 | 272 | $tt_id = $this->tax_tt; |
| 362 | - | |
| 363 | - $last_changed = wp_cache_get_last_changed( 'terms' ); | |
| 364 | - $cache_key = "polylang:get_objects_in_language:{$lang->$tt_id}:{$last_changed}"; | |
| 365 | - $cache = wp_cache_get( $cache_key, 'terms' ); | |
| 366 | - | |
| 367 | - if ( false === $cache ) { | |
| 368 | - $object_ids = $wpdb->get_col( $wpdb->prepare( "SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d", $lang->$tt_id ) ); | |
| 369 | - wp_cache_set( $cache_key, $object_ids, 'terms' ); | |
| 370 | - } else { | |
| 371 | - $object_ids = (array) $cache; | |
| 372 | - } | |
| 373 | - | |
| 374 | - if ( ! $object_ids ) { | |
| 375 | - return array(); | |
| 376 | - } | |
| 377 | - | |
| 378 | - return $object_ids; | |
| 379 | - } | |
| 380 | - | |
| 381 | - /** | |
| 382 | - * Check if a user can synchronize translations. | |
| 383 | - * | |
| 384 | - * @since 2.6 | |
| 385 | - * | |
| 386 | - * @param int $id Object id. | |
| 387 | - * @return bool | |
| 388 | - */ | |
| 389 | - public function current_user_can_synchronize( $id ) { | |
| 390 | - /** | |
| 391 | - * Filters whether a synchronization capability check should take place. | |
| 392 | - * | |
| 393 | - * @since 2.6 | |
| 394 | - * | |
| 395 | - * @param bool|null $check Null to enable the capability check, | |
| 396 | - * true to always allow the synchronization, | |
| 397 | - * false to always disallow the synchronization. | |
| 398 | - * Defaults to true. | |
| 399 | - * @param int $id The synchronization source object id. | |
| 400 | - */ | |
| 401 | - $check = apply_filters( "pll_pre_current_user_can_synchronize_{$this->type}", true, $id ); | |
| 402 | - if ( null !== $check ) { | |
| 403 | - return $check; | |
| 404 | - } | |
| 405 | - | |
| 406 | - if ( ! current_user_can( "edit_{$this->type}", $id ) ) { | |
| 407 | - return false; | |
| 408 | - } | |
| 409 | - | |
| 410 | - foreach ( $this->get_translations( $id ) as $tr_id ) { | |
| 411 | - if ( $tr_id !== $id && ! current_user_can( "edit_{$this->type}", $tr_id ) ) { | |
| 412 | - return false; | |
| 413 | - } | |
| 414 | - } | |
| 415 | - | |
| 416 | - return true; | |
| 273 | + return $wpdb->get_col( $wpdb->prepare( "SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d", $lang->$tt_id ) ); | |
| 417 | 274 | } |
| 418 | 275 | } |