PluginProbe
Polylang / 2.6.2
Polylang v2.6.2
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 | admin/admin.php +75 -6 2.82.6.2 View file →
@@ -1,8 +1,5 @@
1 1 <?php
2 -/**
3 - * @package Polylang
4 - */
5 2
6 3 /**
7 4 * Admin side controller
8 5 * accessible in $polylang global object
@@ -23,8 +20,9 @@
23 20 * filters_columns => reference to PLL_Admin_Filters_Columns object
24 21 * filters_post => reference to PLL_Admin_Filters_Post object
25 22 * filters_term => reference to PLL_Admin_filters_Term object
26 23 * nav_menu => reference to PLL_Admin_Nav_Menu object
24 + * sync => reference to PLL_Admin_Sync object
27 25 * block_editor => reference to PLL_Admin_Block_Editor object
28 26 * classic_editor => reference to PLL_Admin_Classic_Editor object
29 27 * filters_media => optional, reference to PLL_Admin_Filters_Media object
30 28 *
@@ -30,9 +28,9 @@
30 28 *
31 29 * @since 1.2
32 30 */
33 31 class PLL_Admin extends PLL_Admin_Base {
34 - public $filters, $filters_columns, $filters_post, $filters_term, $nav_menu, $filters_media;
32 + public $filters, $filters_columns, $filters_post, $filters_term, $nav_menu, $sync, $filters_media;
35 33
36 34 /**
37 35 * Loads the polylang text domain
38 36 * Setups filters and action needed on all admin pages and on plugins page
@@ -61,8 +59,14 @@
61 59 // Setup filters for admin pages
62 60 // Priority 5 to make sure filters are there before customize_register is fired
63 61 if ( $this->model->get_languages_list() ) {
64 62 add_action( 'wp_loaded', array( $this, 'add_filters' ), 5 );
63 + add_action( 'admin_init', array( $this, 'maybe_load_sync_post' ) );
64 +
65 + // Bulk Translate
66 + if ( class_exists( 'PLL_Bulk_Translate' ) ) {
67 + add_action( 'current_screen', array( $this->bulk_translate = new PLL_Bulk_Translate( $this ), 'init' ) );
68 + }
65 69 }
66 70 }
67 71
68 72 /**
@@ -95,13 +99,12 @@
95 99 /**
96 100 * Setup filters for admin pages
97 101 *
98 102 * @since 1.2
99 - * @since 2.7 instantiate a PLL_Bulk_Translate instance.
100 103 */
101 104 public function add_filters() {
102 105 // All these are separated just for convenience and maintainability
103 - $classes = array( 'Filters', 'Filters_Columns', 'Filters_Post', 'Filters_Term', 'Nav_Menu', 'Classic_Editor', 'Block_Editor' );
106 + $classes = array( 'Filters', 'Filters_Columns', 'Filters_Post', 'Filters_Term', 'Nav_Menu', 'Sync', 'Classic_Editor', 'Block_Editor' );
104 107
105 108 // Don't load media filters if option is disabled or if user has no right
106 109 if ( $this->options['media_support'] && ( $obj = get_post_type_object( 'attachment' ) ) && ( current_user_can( $obj->cap->edit_posts ) || current_user_can( $obj->cap->create_posts ) ) ) {
107 110 $classes[] = 'Filters_Media';
@@ -119,6 +122,72 @@
119 122 */
120 123 $class = apply_filters( 'pll_' . $obj, 'PLL_Admin_' . $class );
121 124 $this->$obj = new $class( $this );
122 125 }
126 +
127 + $this->posts = new PLL_CRUD_Posts( $this );
128 + $this->terms = new PLL_CRUD_Terms( $this );
129 +
130 + // Advanced media
131 + if ( $this->options['media_support'] && class_exists( 'PLL_Admin_Advanced_Media' ) ) {
132 + $this->advanced_media = new PLL_Admin_Advanced_Media( $this );
133 + }
134 +
135 + // Share term slugs
136 + if ( get_option( 'permalink_structure' ) && $this->options['force_lang'] && class_exists( 'PLL_Admin_Share_Term_Slug' ) ) {
137 + $this->share_term_slug = new PLL_Admin_Share_Term_Slug( $this );
138 + }
139 +
140 + if ( class_exists( 'PLL_Sync_Content' ) ) {
141 + $this->sync_content = new PLL_Sync_Content( $this );
142 + }
143 +
144 + // Duplicate content
145 + if ( class_exists( 'PLL_Duplicate' ) ) {
146 + $this->duplicate = new PLL_Duplicate( $this );
147 + }
148 +
149 + if ( class_exists( 'PLL_Duplicate_REST' ) ) {
150 + $this->duplicate_rest = new PLL_Duplicate_REST();
151 + }
152 +
153 + // Block editor metabox
154 + if ( pll_use_block_editor_plugin() ) {
155 + $this->block_editor_plugin = new PLL_Block_Editor_Plugin( $this );
156 + }
157 + }
158 +
159 + /**
160 + * Load the post synchronization object, depending on the editor in use.
161 + *
162 + * @since 2.6
163 + */
164 + public function maybe_load_sync_post() {
165 + // Post synchronization
166 + if ( 'post-new.php' === $GLOBALS['pagenow'] && function_exists( 'use_block_editor_for_post' ) ) {
167 + // We need to wait until we know which editor is in use
168 + add_filter( 'use_block_editor_for_post', array( $this, '_maybe_load_sync_post' ), 999 ); // After the plugin Classic Editor
169 + } elseif ( 'post.php' === $GLOBALS['pagenow'] && function_exists( 'use_block_editor_for_post' ) && isset( $_GET['post'] ) && empty( $_GET['meta-box-loader'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
170 + $this->_maybe_load_sync_post( use_block_editor_for_post( (int) $_GET['post'] ) ); // phpcs:ignore WordPress.Security.NonceVerification
171 + } else {
172 + $this->_maybe_load_sync_post( false );
173 + }
174 + }
175 +
176 + /**
177 + * Load the post synchronization object, depending on the editor in use.
178 + *
179 + * @since 2.6
180 + *
181 + * @param bool $is_block_editor Whether to use the block editor or not
182 + * @return bool
183 + */
184 + public function _maybe_load_sync_post( $is_block_editor ) {
185 + if ( class_exists( 'PLL_Sync_Post_REST' ) && pll_use_block_editor_plugin() && $is_block_editor ) {
186 + $this->sync_post = new PLL_Sync_Post_REST( $this );
187 + } elseif ( class_exists( 'PLL_Sync_Post' ) ) {
188 + $this->sync_post = new PLL_Sync_Post( $this );
189 + }
190 +
191 + return $is_block_editor;
123 192 }
124 193 }