post_type, FLBuilderModel::get_post_types() ) ) { return; } $branding = FLBuilderModel::get_branding(); $post_type_object = get_post_type_object( $post->post_type ); $post_type_name = $post_type_object->labels->singular_name; $min = ( ! FLBuilder::is_debug() ) ? '.min' : ''; wp_enqueue_style( 'fl-builder-wp-editor', FL_BUILDER_URL . 'css/build/wp-editor.bundle' . $min . '.css', array(), FL_BUILDER_VERSION ); wp_enqueue_script( 'fl-builder-wp-editor', FL_BUILDER_URL . 'js/build/wp-editor.bundle' . $min . '.js', array( 'wp-editor' ), FL_BUILDER_VERSION ); wp_localize_script( 'fl-builder-wp-editor', 'FLBuilderConfig', array( 'builder' => array( 'access' => FLBuilderUserAccess::current_user_can( 'builder_access' ), 'enabled' => FLBuilderModel::is_builder_enabled( $post->ID ), 'nonce' => wp_create_nonce( 'fl_ajax_update' ), 'unrestricted' => FLBuilderUserAccess::current_user_can( 'unrestricted_editing' ), ), 'post' => array( 'id' => $post->ID, ), 'strings' => array( 'active' => sprintf( _x( '%1$s is currently active for this %2$s.', '%1$s branded builder name. %2$s post type name.', 'fl-builder' ), $branding, strtolower( $post_type_name ) ), 'convert' => sprintf( _x( 'Convert to %s', '%s branded builder name.', 'fl-builder' ), $branding ), 'description' => sprintf( _x( '%s lets you drag and drop your layout on the frontend.', '%s branded builder name.', 'fl-builder' ), $branding ), 'editor' => __( 'Use Standard Editor', 'fl-builder' ), 'launch' => sprintf( _x( 'Launch %s', '%s branded builder name.', 'fl-builder' ), $branding ), 'title' => $branding, 'view' => sprintf( _x( 'View %s', '%s post type name.', 'fl-builder' ), $post_type_name ), 'warning' => __( 'Switching to the native WordPress editor will disable your Beaver Builder layout until it is enabled again. Any edits made in the WordPress editor will not be converted to your Page Builded layout. Do you want to continue?', 'fl-builder' ), ), 'urls' => array( 'edit' => FLBuilderModel::get_edit_url( $post->ID ), 'view' => get_permalink( $post->ID ), ), ) ); } } FLBuilderWPBlocks::init();