PluginProbe
Polylang / 3.7.7
Polylang v3.7.7
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
← All changes | include/translated-post.php +443 -123 2.93.7.7 View file →
@@ -2,168 +2,266 @@
2 2 /**
3 3 * @package Polylang
4 4 */
5 5
6 +use WP_Syntex\Polylang\Options\Options;
7 +
8 +defined( 'ABSPATH' ) || exit;
9 +
6 10 /**
7 - * Setups the posts languages and translations model
11 + * Sets the posts languages and translations model up.
8 12 *
9 13 * @since 1.8
14 + *
15 + * @phpstan-import-type DBInfoWithType from PLL_Translatable_Object_With_Types_Interface
10 16 */
11 -class PLL_Translated_Post extends PLL_Translated_Object {
17 +class PLL_Translated_Post extends PLL_Translated_Object implements PLL_Translatable_Object_With_Types_Interface {
18 + use PLL_Translatable_Object_With_Types_Trait;
12 19
13 20 /**
14 - * Constructor
21 + * Taxonomy name for the languages.
15 22 *
23 + * @var string
24 + *
25 + * @phpstan-var non-empty-string
26 + */
27 + protected $tax_language = 'language';
28 +
29 + /**
30 + * Identifier that must be unique for each type of content.
31 + * Also used when checking capabilities.
32 + *
33 + * @var string
34 + *
35 + * @phpstan-var non-empty-string
36 + */
37 + protected $type = 'post';
38 +
39 + /**
40 + * Identifier for each type of content to used for cache type.
41 + *
42 + * @var string
43 + *
44 + * @phpstan-var non-empty-string
45 + */
46 + protected $cache_type = 'posts';
47 +
48 + /**
49 + * Taxonomy name for the translation groups.
50 + *
51 + * @var string
52 + *
53 + * @phpstan-var non-empty-string
54 + */
55 + protected $tax_translations = 'post_translations';
56 +
57 + /**
58 + * Constructor.
59 + *
16 60 * @since 1.8
17 61 *
18 - * @param object $model
62 + * @param PLL_Model $model Instance of `PLL_Model`.
19 63 */
20 - public function __construct( &$model ) {
21 - // init properties
22 - $this->object_type = null; // For taxonomies
23 - $this->type = 'post'; // For capabilities
24 - $this->tax_language = 'language';
25 - $this->tax_translations = 'post_translations';
26 - $this->tax_tt = 'term_taxonomy_id';
27 -
64 + public function __construct( PLL_Model $model ) {
28 65 parent::__construct( $model );
29 66
30 - // registers completely the language taxonomy
31 - add_action( 'setup_theme', array( $this, 'register_taxonomy' ), 1 );
67 + // Keep hooks in constructor for backward compatibility.
68 + $this->init();
69 + }
32 70
33 - // setups post types to translate
34 - add_action( 'registered_post_type', array( $this, 'registered_post_type' ) );
71 + /**
72 + * Registers the language taxonomy.
73 + *
74 + * @since 1.2
75 + * @since 3.7 Protected and renamed from `register_taxonomy()`.
76 + *
77 + * @return void
78 + */
79 + protected function register_language_taxonomy(): void {
80 + register_taxonomy(
81 + $this->tax_language,
82 + (array) $this->get_translated_object_types(),
83 + array(
84 + 'public' => false,
85 + 'show_ui' => false, // Hide the taxonomy on admin side, needed for WP 4.4.x.
86 + 'show_in_nav_menus' => false, // No metabox for nav menus, needed for WP 4.4.x.
87 + 'publicly_queryable' => true, // Since WP 4.5.
88 + 'query_var' => 'lang', // See `add_language_taxonomy_query_var()`.
89 + 'rewrite' => false, // Rewrite rules are added through filters when needed.
90 + '_pll' => true, // Polylang taxonomy.
91 + )
92 + );
35 93
36 - // forces updating posts cache
37 - add_action( 'pre_get_posts', array( $this, 'pre_get_posts' ) );
94 + add_action( 'setup_theme', array( $this, 'add_language_taxonomy_query_var' ) );
38 95 }
39 96
40 97 /**
41 - * Store the post language in the database
98 + * Adds the language query var once the global `$wp` is available.
42 99 *
43 - * @since 0.6
100 + * @since 3.7
101 + * @see WP_Taxonomy::add_rewrite_rules()
44 102 *
45 - * @param int $post_id post id
46 - * @param int|string|object $lang language ( term_id or slug or object )
103 + * @return void
47 104 */
48 - public function set_language( $post_id, $lang ) {
49 - $old_lang = $this->get_language( $post_id );
50 - $old_lang = $old_lang ? $old_lang->slug : '';
51 - $lang = $lang ? $this->model->get_language( $lang )->slug : '';
52 -
53 - if ( $old_lang !== $lang ) {
54 - wp_set_post_terms( (int) $post_id, $lang, 'language' );
55 - }
105 + public function add_language_taxonomy_query_var(): void {
106 + $GLOBALS['wp']->add_query_var( 'lang' );
56 107 }
57 108
58 109 /**
59 - * Returns the language of a post
110 + * Adds hooks.
60 111 *
61 - * @since 0.1
112 + * @since 3.4
62 113 *
63 - * @param int $post_id post id
64 - * @return bool|object PLL_Language object, false if no language is associated to that post
114 + * @return static
65 115 */
66 - public function get_language( $post_id ) {
67 - $lang = $this->get_object_term( $post_id, 'language' );
68 - return ( $lang ) ? $this->model->get_language( $lang ) : false;
116 + public function init() {
117 + // Setups post types to translate.
118 + add_action( 'registered_post_type', array( $this, 'registered_post_type' ) );
119 +
120 + // Forces updating posts cache.
121 + add_action( 'pre_get_posts', array( $this, 'pre_get_posts' ) );
122 + return parent::init();
69 123 }
70 124
71 125 /**
72 - * Deletes a translation
126 + * Deletes a translation of a post.
73 127 *
74 128 * @since 0.5
75 129 *
76 - * @param int $id post id
130 + * @param int $id Post ID.
131 + * @return void
77 132 */
78 133 public function delete_translation( $id ) {
134 + $id = $this->sanitize_int_id( $id );
135 +
136 + if ( empty( $id ) ) {
137 + return;
138 + }
139 +
79 140 parent::delete_translation( $id );
80 - wp_set_object_terms( $id, null, $this->tax_translations );
141 + wp_set_object_terms( $id, array(), $this->tax_translations );
81 142 }
82 143
83 144 /**
84 - * A join clause to add to sql queries when filtering by language is needed directly in query
145 + * Returns object types (post types) that need to be translated.
146 + * The post types list is cached for better performance.
147 + * The method waits for 'after_setup_theme' to apply the cache to allow themes adding the filter in functions.php.
85 148 *
86 - * @since 1.2
149 + * @since 3.4
87 150 *
88 - * @param string $alias Alias for $wpdb->posts table
89 - * @return string join clause
151 + * @param bool $filter True if we should return only valid registered object types.
152 + * @return string[] Object type names for which Polylang manages languages.
153 + *
154 + * @phpstan-return array<non-empty-string, non-empty-string>
90 155 */
91 - public function join_clause( $alias = '' ) {
92 - global $wpdb;
93 - if ( empty( $alias ) ) {
94 - $alias = $wpdb->posts;
156 + public function get_translated_object_types( $filter = true ) {
157 + $post_types = $this->cache->get( 'post_types' );
158 +
159 + if ( false === $post_types ) {
160 + $post_types = array( 'post' => 'post', 'page' => 'page', 'wp_block' => 'wp_block' );
161 +
162 + if ( ! empty( $this->options['post_types'] ) ) {
163 + $post_types = array_merge( $post_types, array_combine( $this->options['post_types'], $this->options['post_types'] ) );
164 + }
165 +
166 + if ( empty( $this->options['media_support'] ) ) {
167 + // In case the post type attachment is stored in the option.
168 + unset( $post_types['attachment'] );
169 + } else {
170 + $post_types['attachment'] = 'attachment';
171 + }
172 +
173 + /**
174 + * Filters the list of post types available for translation.
175 + * The default are post types which have the parameter ‘public’ set to true.
176 + * The filter must be added soon in the WordPress loading process:
177 + * in a function hooked to ‘plugins_loaded’ or directly in functions.php for themes.
178 + *
179 + * @since 0.8
180 + *
181 + * @param string[] $post_types List of post type names (as array keys and values).
182 + * @param bool $is_settings True when displaying the list of custom post types in Polylang settings.
183 + */
184 + $post_types = (array) apply_filters( 'pll_get_post_types', $post_types, false );
185 +
186 + if ( did_action( 'after_setup_theme' ) && ! doing_action( 'switch_blog' ) ) {
187 + $this->cache->set( 'post_types', $post_types );
188 + }
95 189 }
96 - return " INNER JOIN $wpdb->term_relationships AS pll_tr ON pll_tr.object_id = $alias.ID";
190 +
191 + /** @var array<non-empty-string, non-empty-string> $post_types */
192 + return $filter ? array_intersect( $post_types, get_post_types() ) : $post_types;
97 193 }
98 194
99 195 /**
100 - * Register the language taxonomy
196 + * Returns true if Polylang manages languages for this object type.
101 197 *
102 - * @since 1.2
198 + * @since 3.4
199 + *
200 + * @param string|string[] $object_type Object type (post type) name or array of object type names.
201 + * @return bool
202 + *
203 + * @phpstan-param non-empty-string|non-empty-string[] $object_type
103 204 */
104 - public function register_taxonomy() {
105 - register_taxonomy(
106 - 'language',
107 - $this->model->get_translated_post_types(),
108 - array(
109 - 'labels' => array(
110 - 'name' => __( 'Languages', 'polylang' ),
111 - 'singular_name' => __( 'Language', 'polylang' ),
112 - 'all_items' => __( 'All languages', 'polylang' ),
113 - ),
114 - 'public' => false,
115 - 'show_ui' => false, // hide the taxonomy on admin side, needed for WP 4.4.x
116 - 'show_in_nav_menus' => false, // no metabox for nav menus, needed for WP 4.4.x
117 - 'publicly_queryable' => true, // since WP 4.5
118 - 'query_var' => 'lang',
119 - 'rewrite' => $this->model->options['force_lang'] < 2, // no rewrite for domains and sub-domains
120 - '_pll' => true, // polylang taxonomy
121 - )
122 - );
205 + public function is_translated_object_type( $object_type ) {
206 + $post_types = $this->get_translated_object_types( false );
207 + return ( is_array( $object_type ) && array_intersect( $object_type, $post_types ) ) || in_array( $object_type, $post_types ) || ( 'any' === $object_type && ! empty( $post_types ) );
123 208 }
124 209
125 210 /**
126 - * Check if registered post type must be translated
211 + * Checks if registered post type must be translated.
127 212 *
128 213 * @since 1.2
129 214 *
130 - * @param string $post_type post type name
215 + * @param string $post_type Post type name.
216 + * @return void
217 + *
218 + * @phpstan-param non-empty-string $post_type
131 219 */
132 220 public function registered_post_type( $post_type ) {
133 - if ( $this->model->is_translated_post_type( $post_type ) ) {
134 - register_taxonomy_for_object_type( 'language', $post_type );
135 - register_taxonomy_for_object_type( 'post_translations', $post_type );
221 + if ( $this->is_translated_object_type( $post_type ) ) {
222 + register_taxonomy_for_object_type( $this->tax_language, $post_type );
223 + register_taxonomy_for_object_type( $this->tax_translations, $post_type );
136 224 }
137 225 }
138 226
139 227 /**
140 - * Forces calling 'update_object_term_cache' when querying posts or pages
141 - * this is especially useful for nav menus with a lot of pages
142 - * without doing this, we would have one query per page in the menu to get the page language for the permalink
228 + * Forces calling 'update_object_term_cache' when querying posts or pages.
229 + * This is especially useful for nav menus with a lot of pages as, without doing this,
230 + * we would have one query per page in the menu to get the page language for the permalink.
143 231 *
144 232 * @since 1.8
145 233 *
146 - * @param object $query reference to the query object
234 + * @param WP_Query $query Reference to the query object.
235 + * @return void
147 236 */
148 237 public function pre_get_posts( $query ) {
149 - if ( ! empty( $query->query['post_type'] ) && $this->model->is_translated_post_type( $query->query['post_type'] ) ) {
238 + if ( ! empty( $query->query['post_type'] ) && $this->is_translated_object_type( $query->query['post_type'] ) ) {
150 239 $query->query_vars['update_post_term_cache'] = true;
151 240 }
152 241 }
153 242
154 243 /**
155 - * Checks if the current user can read the post
244 + * Checks if the current user can read the post.
156 245 *
157 246 * @since 1.5
247 + * @since 3.4 Renamed the parameter $post_id into $id.
158 248 *
159 - * @param int $post_id Post ID
160 - * @param string $context Optional, 'edit' or 'view', defaults to 'view'.
249 + * @param int $id Post ID
250 + * @param string $context Optional, 'edit' or 'view'. Defaults to 'view'.
161 251 * @return bool
252 + *
253 + * @phpstan-param non-empty-string $context
162 254 */
163 - public function current_user_can_read( $post_id, $context = 'view' ) {
164 - $post = get_post( $post_id );
255 + public function current_user_can_read( $id, $context = 'view' ) {
256 + $id = $this->sanitize_int_id( $id );
165 257
258 + if ( empty( $id ) ) {
259 + return false;
260 + }
261 +
262 + $post = get_post( $id );
263 +
166 264 if ( empty( $post ) ) {
167 265 return false;
168 266 }
169 267
@@ -168,8 +266,12 @@
168 266 }
169 267
170 268 if ( 'inherit' === $post->post_status && $post->post_parent ) {
171 269 $post = get_post( $post->post_parent );
270 +
271 + if ( empty( $post ) ) {
272 + return false;
273 + }
172 274 }
173 275
174 276 if ( 'inherit' === $post->post_status || in_array( $post->post_status, get_post_stati( array( 'public' => true ) ) ) ) {
175 277 return true;
@@ -176,11 +278,21 @@
176 278 }
177 279
178 280 // Follow WP practices, which shows links to private posts ( when readable ), but not for draft posts ( ex: get_adjacent_post_link() )
179 281 if ( in_array( $post->post_status, get_post_stati( array( 'private' => true ) ) ) ) {
282 + if ( ! is_user_logged_in() ) {
283 + return false;
284 + }
285 +
286 + $user = wp_get_current_user();
287 +
288 + if ( (int) $user->ID === (int) $post->post_author ) {
289 + return true;
290 + }
291 +
180 292 $post_type_object = get_post_type_object( $post->post_type );
181 - $user = wp_get_current_user();
182 - return is_user_logged_in() && ( current_user_can( $post_type_object->cap->read_private_posts ) || $user->ID == $post->post_author ); // Comparison must not be strict!
293 +
294 + return ! empty( $post_type_object ) && current_user_can( $post_type_object->cap->read_private_posts );
183 295 }
184 296
185 297 // In edit context, show draft and future posts.
186 298 if ( 'edit' === $context ) {
@@ -192,9 +304,9 @@
192 304 );
193 305
194 306 if ( in_array( $post->post_status, $states ) ) {
195 307 $user = wp_get_current_user();
196 - return is_user_logged_in() && ( current_user_can( 'edit_posts' ) || $user->ID == $post->post_author ); // Comparison must not be strict!
308 + return is_user_logged_in() && ( current_user_can( 'edit_posts' ) || (int) $user->ID === (int) $post->post_author );
197 309 }
198 310 }
199 311
200 312 return false;
@@ -200,57 +312,265 @@
200 312 return false;
201 313 }
202 314
203 315 /**
204 - * Returns a list of posts in a language ( $lang )
205 - * not translated in another language ( $untranslated_in )
316 + * Creates a media translation
206 317 *
207 - * @since 2.6
318 + * @since 1.8
319 + * @since 3.7 Moved from PLL_CRUD_Posts.
208 320 *
209 - * @param string $type Post type
210 - * @param string $untranslated_in The posts must not be translated in this language
211 - * @param string $lang Language of the search posts
212 - * @param string $search Limit results to posts matching this string
213 - * @return array Array of posts
321 + * @param int $post_id Original attachment id.
322 + * @param string|PLL_Language $lang New translation language.
323 + * @return int Attachment id of the translated media.
214 324 */
215 - public function get_untranslated( $type, $untranslated_in, $lang, $search = '' ) {
216 - $return = array();
325 + public function create_media_translation( $post_id, $lang ) {
326 + if ( empty( $post_id ) ) {
327 + return 0;
328 + }
217 329
218 - // Don't order by title: see https://wordpress.org/support/topic/find-translated-post-when-10-is-not-enough
219 - $args = array(
220 - 's' => $search,
221 - 'suppress_filters' => 0, // To make the post_fields filter work
222 - 'lang' => 0, // Avoid admin language filter
223 - 'numberposts' => 20, // Limit to 20 posts
224 - 'post_status' => 'any',
225 - 'post_type' => $type,
226 - 'tax_query' => array(
227 - array(
228 - 'taxonomy' => 'language',
229 - 'field' => 'term_taxonomy_id', // WP 3.5+
230 - 'terms' => $lang->term_taxonomy_id,
231 - ),
232 - ),
233 - );
330 + $post = get_post( $post_id, ARRAY_A );
234 331
332 + if ( empty( $post ) ) {
333 + return 0;
334 + }
335 +
336 + $lang = $this->languages->get( $lang ); // Make sure we get a valid language slug.
337 +
338 + if ( empty( $lang ) ) {
339 + return 0;
340 + }
341 +
342 + // Create a new attachment ( translate attachment parent if exists ).
343 + add_filter( 'pll_enable_duplicate_media', '__return_false', 99 ); // Avoid a conflict with automatic duplicate at upload.
344 + unset( $post['ID'] ); // Will force the creation.
345 + if ( ! empty( $post['post_parent'] ) ) {
346 + $post['post_parent'] = (int) $this->get_translation( $post['post_parent'], $lang->slug );
347 + }
348 + $post['tax_input'] = array( 'language' => array( $lang->slug ) ); // Assigns the language.
349 +
350 + // Loads the strings translations with the attachment's target language.
351 + PLL()->load_strings_translations( $lang->slug );
352 +
353 + $tr_id = wp_insert_attachment( wp_slash( $post ) );
354 + remove_filter( 'pll_enable_duplicate_media', '__return_false', 99 ); // Restore automatic duplicate at upload.
355 +
356 + // Copy metadata.
357 + $data = wp_get_attachment_metadata( $post_id, true ); // Unfiltered.
358 + if ( is_array( $data ) ) {
359 + wp_update_attachment_metadata( $tr_id, wp_slash( $data ) ); // Directly uses update_post_meta, so expects slashed.
360 + }
361 +
362 + // Copy attached file.
363 + if ( $file = get_attached_file( $post_id, true ) ) { // Unfiltered.
364 + update_attached_file( $tr_id, wp_slash( $file ) ); // Directly uses update_post_meta, so expects slashed.
365 + }
366 +
367 + // Copy alternative text. Direct use of the meta as there is no filtered wrapper to manipulate it.
368 + if ( $text = get_post_meta( $post_id, '_wp_attachment_image_alt', true ) ) {
369 + add_post_meta( $tr_id, '_wp_attachment_image_alt', wp_slash( $text ) );
370 + }
371 +
372 + $this->set_language( $tr_id, $lang );
373 +
374 + $translations = $this->get_translations( $post_id );
375 + $translations[ $lang->slug ] = $tr_id;
376 + $this->save_translations( $tr_id, $translations );
377 +
235 378 /**
236 - * Filter the query args when auto suggesting untranslated posts in the Languages metabox
237 - * This should help plugins to fix some edge cases
379 + * Fires after a media translation is created
238 380 *
239 - * @see https://wordpress.org/support/topic/find-translated-post-when-10-is-not-enough
381 + * @since 1.6.4
240 382 *
383 + * @param int $post_id Post id of the source media.
384 + * @param int $tr_id Post id of the new media translation.
385 + * @param string $slug Language code of the new translation.
386 + */
387 + do_action( 'pll_translate_media', $post_id, $tr_id, $lang->slug );
388 +
389 + // Restores the strings translations with the current language.
390 + if ( PLL()->curlang instanceof PLL_Language ) {
391 + PLL()->load_strings_translations( PLL()->curlang->slug );
392 + }
393 +
394 + return $tr_id;
395 + }
396 +
397 + /**
398 + * Returns a list of posts in a language ($lang) not translated in another language ($untranslated_in).
399 + *
400 + * @since 2.6
401 + *
402 + * @param string $type Post type.
403 + * @param PLL_Language $untranslated_in The language the posts must not be translated in.
404 + * @param PLL_Language $lang Language of the searched posts.
405 + * @param string $search Limit the results to the posts matching this string.
406 + * @return WP_Post[] Array of posts.
407 + */
408 + public function get_untranslated( $type, PLL_Language $untranslated_in, PLL_Language $lang, $search = '' ) {
409 + global $wpdb;
410 +
411 + $args = array( 'numberposts' => 20 ); // Limit to 20 posts by default.
412 + /**
413 + * Filters the query args when auto suggesting untranslated posts in the Languages metabox.
414 + *
241 415 * @since 1.7
416 + * @since 3.4 Handled arguments restricted to `numberposts` to limit queried posts.
417 + * No `WP_Query` is made anymore, a custom one is used instead.
242 418 *
243 419 * @param array $args WP_Query arguments
244 420 */
245 - $args = apply_filters( 'pll_ajax_posts_not_translated_args', $args );
246 - $posts = get_posts( $args );
421 + $args = apply_filters( 'pll_ajax_posts_not_translated_args', $args );
247 422
248 - foreach ( $posts as $post ) {
249 - if ( ! $this->get_translation( $post->ID, $untranslated_in ) && $this->current_user_can_read( $post->ID, 'edit' ) ) {
250 - $return[] = $post;
423 + $limit = $args['numberposts'];
424 + $search_like = '%' . $wpdb->esc_like( $search ) . '%';
425 + $untranslated_like = '%' . $wpdb->esc_like( $untranslated_in->slug ) . '%';
426 + $posts = $wpdb->get_results(
427 + $wpdb->prepare(
428 + "SELECT * FROM {$wpdb->posts}
429 + INNER JOIN {$wpdb->term_relationships} AS tr1 ON ({$wpdb->posts}.ID = tr1.object_id)
430 + AND tr1.term_taxonomy_id IN (%d)
431 + AND (({$wpdb->posts}.post_title LIKE %s)
432 + OR ({$wpdb->posts}.post_excerpt LIKE %s)
433 + OR ({$wpdb->posts}.post_content LIKE %s)
434 + )
435 + AND {$wpdb->posts}.post_type = %s
436 + AND {$wpdb->posts}.post_status NOT IN ('trash', 'auto-draft')
437 + WHERE {$wpdb->posts}.ID NOT IN (
438 + SELECT {$wpdb->posts}.ID FROM {$wpdb->posts}
439 + LEFT JOIN {$wpdb->term_relationships} AS tr2 ON ({$wpdb->posts}.ID = tr2.object_id)
440 + INNER JOIN {$wpdb->term_taxonomy} AS tt ON (tt.term_taxonomy_id = tr2.term_taxonomy_id)
441 + AND (tt.taxonomy = 'post_translations')
442 + AND tt.description LIKE %s
443 + )
444 + LIMIT 0, %d",
445 + $lang->get_tax_prop( $this->tax_language, 'term_taxonomy_id' ),
446 + $search_like,
447 + $search_like,
448 + $search_like,
449 + $type,
450 + $untranslated_like,
451 + $limit
452 + )
453 + );
454 +
455 + foreach ( $posts as $i => $post ) {
456 + if ( ! $this->current_user_can_read( $post->ID, 'edit' ) ) {
457 + unset( $posts[ $i ] );
458 + continue;
251 459 }
460 +
461 + $posts[ $i ] = new WP_Post( $post );
252 462 }
253 463
254 - return $return;
464 + return $posts;
465 + }
466 +
467 + /**
468 + * Returns the description to use for the "language properties" in the REST API.
469 + *
470 + * @since 3.7
471 + * @see WP_Syntex\Polylang\REST\V2\Languages::get_item_schema()
472 + *
473 + * @return string
474 + */
475 + public function get_rest_description(): string {
476 + return __( 'Language taxonomy properties for post types.', 'polylang' );
477 + }
478 +
479 + /**
480 + * Returns database-related information that can be used in some of this class methods.
481 + * These are specific to the table containing the objects.
482 + *
483 + * @see PLL_Translatable_Object::join_clause()
484 + * @see PLL_Translatable_Object::get_raw_objects_with_no_lang()
485 + *
486 + * @since 3.4.3
487 + *
488 + * @return string[] {
489 + * @type string $table Name of the table.
490 + * @type string $id_column Name of the column containing the object's ID.
491 + * @type string $type_column Name of the column containing the object's type.
492 + * @type string $default_alias Default alias corresponding to the object's table.
493 + * }
494 + * @phpstan-return DBInfoWithType
495 + */
496 + protected function get_db_infos() {
497 + return array(
498 + 'table' => $GLOBALS['wpdb']->posts,
499 + 'id_column' => 'ID',
500 + 'type_column' => 'post_type',
501 + 'default_alias' => $GLOBALS['wpdb']->posts,
502 + );
503 + }
504 +
505 + /**
506 + * Wraps `wp_insert_post` with language feature.
507 + *
508 + * @since 3.7
509 + *
510 + * @param array $postarr {
511 + * Optional. An array of elements that make up a post to insert.
512 + * @See wp_insert_post() for accepted arguments.
513 + *
514 + * @type string[] $translations The translation group to assign to the post with language slug as keys and post ID as values.
515 + * }
516 + * @param PLL_Language $language The post language object.
517 + * @return int|WP_Error The post ID on success. The value `WP_Error` on failure.
518 + */
519 + public function insert( array $postarr, PLL_Language $language ) {
520 + $post_id = wp_insert_post( $postarr, true );
521 + if ( is_wp_error( $post_id ) ) {
522 + // Something went wrong!
523 + return $post_id;
524 + }
525 +
526 + $this->set_language( $post_id, $language );
527 +
528 + if ( ! empty( $postarr['translations'] ) ) {
529 + $this->save_translations( $post_id, $postarr['translations'] );
530 + }
531 +
532 + return $post_id;
533 + }
534 +
535 + /**
536 + * Wraps `wp_update_post` with language feature.
537 + *
538 + * @since 3.7
539 + *
540 + * @param array $postarr {
541 + * Optional. An array of elements that make up a post to update.
542 + * @See wp_insert_post() for accepted arguments.
543 + *
544 + * @type PLL_Language|string $lang The post language object or slug.
545 + * @type string[] $translations The translation group to assign to the post with language slug as keys and post ID as values.
546 + * }
547 + * @return int|WP_Error The post ID on success. The value `WP_Error` on failure.
548 + */
549 + public function update( array $postarr ) {
550 + if ( ! empty( $postarr['lang'] ) ) {
551 + $post = get_post( $postarr['ID'] );
552 + if ( ! $post instanceof WP_Post ) {
553 + return new WP_Error( 'invalid_post', __( 'Invalid post ID.', 'polylang' ) );
554 + }
555 +
556 + $language = $this->languages->get( $postarr['lang'] );
557 + if ( ! $language instanceof PLL_Language ) {
558 + return new WP_Error( 'invalid_language', __( 'Please provide a valid language.', 'polylang' ) );
559 + }
560 +
561 + $this->set_language( $postarr['ID'], $language );
562 + }
563 +
564 + $post_id = wp_update_post( $postarr, true );
565 + if ( is_wp_error( $post_id ) ) {
566 + // Something went wrong!
567 + return $post_id;
568 + }
569 +
570 + if ( ! empty( $postarr['translations'] ) ) {
571 + $this->save_translations( $postarr['ID'], $postarr['translations'] );
572 + }
573 +
574 + return $post_id;
255 575 }
256 576 }