Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/classes/post-edit-screen/class-wpml-tm-post-edit-tm-editor-select-factory.php
2023-09-12 21:41:04 +02:00

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;
}
}
}