is_enabled_block() && ! $keep_silent ) { add_action( 'init', array( $this, 'register_block' ), 20 ); add_action( 'ablocks/before_render_' . $this->block_name . '_block_content', array( $this, 'enqueue_block_specific_static_assets' ) ); } } public function is_enabled_block() { global $ablocks_blocks; $block_name = ! empty( $this->parent_block_name ) ? $this->parent_block_name : $this->block_name; if ( isset( $ablocks_blocks->{$block_name} ) ) { return (bool) $ablocks_blocks->{$block_name}; } return false; } public function register_block() { $block_path = $this->assets_path . 'build/blocks/' . $this->block_name . '/block.json'; $args = [ 'render_callback' => array( $this, 'render_callback' ), ]; if ( isset( $metadata['usesContext'] ) ) { $args['usesContext'] = $metadata['usesContext']; } if ( isset( $metadata['providesContext'] ) ) { $args['providesContext'] = $metadata['providesContext']; } if ( $this->is_skip_inner_block ) { $args['skip_inner_blocks'] = $this->is_skip_inner_block; } register_block_type( $block_path, $args ); } public function get_attributes() { $block_attributes = include $this->blocks_dir_path . $this->block_name . '/attributes.php'; return apply_filters( 'ablocks/register_block_attributes', $block_attributes, $this->block_name, $this->parent_block_name ); } private function get_block_class( $css_class ) { $classes = array(); if ( $css_class ) { if ( ! is_array( $css_class ) ) { $css_class = preg_split( '#\s+#', $css_class ); } $classes = array_map( 'esc_attr', $css_class ); } else { // Ensure that we always coerce class to being an array. $css_class = array(); } return 'class="' . esc_attr( implode( ' ', $classes ) ) . '"'; } private function get_block_data_settings_attributes( $settings ) { if ( ! is_array( $settings ) || empty( $settings['animationType'] ) || $settings['animationType'] !== 'none' ) { return ''; } // Sanitize each setting in the array $sanitized_settings = array_map( 'esc_attr', $settings ); // Encode sanitized settings to JSON and escape it for safe output return sprintf( 'data-settings="%s"', esc_attr( wp_json_encode( $sanitized_settings ) ) ); } private function get_dynamic_block_wrap( $attributes, $content, $block_instance ) { $block_id = ( isset( $attributes['block_id'] ) ? $attributes['block_id'] : '' ); $animation = ( isset( $attributes['_animation'] ) ? $attributes['_animation'] : [] ); $block_class_args = array( 'ablocks-block', 'ablocks-block-' . $block_id, 'ablocks-block--' . $this->block_name ); $has_transform = (bool) ( isset( $attributes['_transform']['isApplied'] ) ? $attributes['_transform']['isApplied'] : false ); if ( count( $animation ) && ( ( ! empty( $animation['animationType'] ) && $animation['animationType'] !== 'none' ) || ( ! empty( $animation['animationTypeTablet'] ) && $animation['animationTypeTablet'] !== 'none' ) || ( ! empty( $animation['animationTypeMobile'] ) && $animation['animationTypeMobile'] !== 'none' ) ) ) { array_push( $block_class_args, 'ablocks-invisible' ); } if ( $has_transform ) { array_push( $block_class_args, 'ablocks-has-block-container' ); } ob_start(); ?>
get_block_class( $block_class_args ) . $this->get_block_data_settings_attributes( $animation ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
render_block_content( $attributes, $content, $block_instance ); ?>
render_block_content( $attributes, $content, $block_instance ); endif; ?>
name; do_action( 'ablocks/before_render_' . explode( '/', $block_name )[1] . '_block_content', $block_name ); do_action( 'ablocks/render_callback', $block_name, $attributes ); // Dynamic block if ( ! $content || $this->is_skip_inner_block ) { $content = $this->get_dynamic_block_wrap( $attributes, $content, $block_instance ); } // Static Block but control render from php $content = apply_filters( 'ablocks/get_render_block_content', $content, $attributes, $block_instance ); if ( ! $content ) { return $content; } // Pure Static block if ( apply_filters( 'ablocks/is_allow_block_inline_assets', ( ! is_admin() || defined( 'DOING_AJAX' ) && DOING_AJAX ) && ! Helper::is_enabled_assets_generation() ) ) { $build_css = ''; return $build_css . $content; } return $content; } private function enqueue_static_assets( $block_name ) { // Library if ( count( $this->get_style_depends() ) ) { foreach ( $this->get_style_depends() as $style_handler ) { wp_enqueue_style( $style_handler ); } } // Library if ( count( $this->get_script_depends() ) ) { foreach ( $this->get_script_depends() as $script_handler ) { wp_enqueue_script( $script_handler ); } } // block static css if ( file_exists( $this->assets_path . 'build/blocks/' . $block_name . '/style.css' ) ) { wp_enqueue_style( 'ablocks-' . $block_name . '-block-static-style', $this->assets_url . 'build/blocks/' . $block_name . '/style.css', array(), filemtime( $this->assets_path . 'build/blocks/' . $block_name . '/style.css' ), 'all' ); } $script_loading_strategy = \ABlocks\Helper::get_script_loading_strategy(); $args = [ 'strategy' => $script_loading_strategy ]; if ( file_exists( $this->assets_path . 'build/blocks/' . $block_name . '/view.js' ) && ! wp_script_is( 'ablocks-' . $block_name . '-block-static-script', 'enqueued' ) ) { $dependencies = include $this->assets_path . 'build/blocks/' . $block_name . '/view.asset.php'; wp_enqueue_script( 'ablocks-' . $block_name . '-block-static-script', $this->assets_url . 'build/blocks/' . $block_name . '/view.js', $dependencies['dependencies'], $dependencies['version'], $args ); $Assets = new Assets(); wp_localize_script( 'ablocks-' . $block_name . '-block-static-script', 'ABlocksGlobal', $Assets->get_localize_frontend_data() ); } } public function enqueue_block_static_assets() { if ( ! is_admin() && ! Helper::is_enabled_assets_generation() ) { $this->enqueue_static_assets( $this->block_name ); }//end if } public function enqueue_block_specific_static_assets( $block_name ) { if ( ! is_admin() && ! Helper::is_enabled_assets_generation() ) { $this->enqueue_static_assets( explode( '/', $block_name )[1] ); }//end if } public function get_static_css() { if ( file_exists( $this->assets_path . 'build/blocks/' . $this->block_name . '/style.css' ) ) { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents $has_static_css = file_get_contents( $this->assets_path . 'build/blocks/' . $this->block_name . '/style.css' ); if ( $has_static_css ) { return $has_static_css; } } return ''; } public function get_static_js() { if ( file_exists( $this->assets_path . 'build/blocks/' . $this->block_name . '/view.js' ) ) { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents $has_static_js = file_get_contents( $this->assets_path . 'build/blocks/' . $this->block_name . '/view.js' ); if ( $has_static_js ) { return $has_static_js; } } return ''; } public function get_style_depends() { return apply_filters( 'ablocks/block_style_depends', array_merge( $this->style_depends, array( 'ablocks-frontend-google-fonts', 'ablocks-animate-style', 'ablocks-common-style' ) ) ); } public function get_script_depends() { return apply_filters( 'ablocks/block_script_depends', array_merge( $this->script_depends, array( 'ablocks-common-script' ) ) ); } abstract public function build_css( $attributes); }