20 lines
408 B
PHP
20 lines
408 B
PHP
<?php
|
|
|
|
class WPML_TM_Post_Edit_TM_Editor_Select_Factory implements IWPML_Backend_Action_Loader, IWPML_AJAX_Action_Loader {
|
|
|
|
public function create() {
|
|
global $sitepress;
|
|
|
|
if (
|
|
$sitepress->is_post_edit_screen() ||
|
|
wpml_is_ajax() ||
|
|
apply_filters( 'wpml_enable_language_meta_box', false )
|
|
) {
|
|
return new WPML_TM_Post_Edit_TM_Editor_Select( $sitepress );
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
}
|