Print editor scripts if they are not printed by default

This commit is contained in:
denisbaranov
2020-02-02 22:50:01 +02:00
parent dcb14f4e05
commit 86320f01bb
2 changed files with 34 additions and 22 deletions
+28 -7
View File
@@ -98,6 +98,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Enqueue' ) ) {
function enqueue_cpt_scripts() {
if ( ( isset( $_GET['post_type'] ) && 'um_form' == $_GET['post_type'] ) || ( isset( $_GET['post'] ) && 'um_form' == get_post_type( $_GET['post'] ) ) ) {
$this->um_cpt_form_screen = true;
add_action( 'admin_footer', array( $this, 'admin_footer_scripts' ), 20 );
}
$this->post_page = true;
@@ -267,13 +268,6 @@ if ( ! class_exists( 'um\admin\core\Admin_Enqueue' ) ) {
wp_register_script( 'um_admin_modal', $this->js_url . 'um-admin-modal.js', array( 'jquery', 'editor', 'wp-util', 'wp-color-picker', 'wp-tinymce' ), ultimatemember_version, true );
wp_enqueue_script( 'um_admin_modal' );
if ( ! class_exists( '_WP_Editors', false ) ) {
require_once( ABSPATH . WPINC . '/class-wp-editor.php' );
}
if ( ! did_action( 'print_default_editor_scripts' ) ) {
\_WP_Editors::editor_js();
}
}
@@ -655,5 +649,32 @@ if ( ! class_exists( 'um\admin\core\Admin_Enqueue' ) ) {
}
/**
* Print editor scripts if they are not printed by default
* @return type
*/
function admin_footer_scripts() {
$CLASS = '\_WP_Editors';
if ( did_action( 'print_default_editor_scripts' ) ) {
return;
}
if ( did_action( 'wp_tiny_mce_init' ) ) {
return;
}
if ( has_action( 'admin_print_footer_scripts', array( $CLASS, 'editor_js' ) ) ) {
return;
}
if ( !class_exists( $CLASS, false ) ) {
require_once( ABSPATH . WPINC . '/class-wp-editor.php' );
}
$CLASS::force_uncompressed_tinymce();
$CLASS::enqueue_scripts();
$CLASS::editor_js();
}
}
}