| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /**
- * Beaver Builder support for WordPress blocks.
- *
- * @since 2.1
- */
- final class FLBuilderWPBlocks {
- /**
- * @since 2.1
- * @return void
- */
- static public function init() {
- add_action( 'init', __CLASS__ . '::setup' );
- }
- /**
- * @since 2.1
- * @return void
- */
- static public function setup() {
- if ( ! function_exists( 'register_block_type' ) ) {
- return;
- }
- // Actions
- add_action( 'enqueue_block_editor_assets', __CLASS__ . '::enqueue_block_editor_assets' );
- // Block Files
- require_once FL_BUILDER_DIR . 'classes/class-fl-builder-wp-blocks-layout.php';
- }
- /**
- * Enqueues scripts and styles for the block editor.
- *
- * @since 2.1
- * @return void
- */
- static public function enqueue_block_editor_assets() {
- global $post;
- if ( ! is_object( $post ) ) {
- return;
- } elseif ( ! in_array( $post->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();
|