PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / trunk
bBlocks – Essential Gutenberg Blocks & Patterns Collection vtrunk
2.1.6 2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.43 2.0.42 2.0.41 2.0.40 2.0.39 2.0.38 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 106 releases
b-blocks / build / code-highlight / render.php

render.php in bBlocks – Essential Gutenberg Blocks & Patterns Collection trunk, at build/code-highlight/render.php

24 lines 862 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Code Highlight block server-side render.
4 *
5 * Emits only an empty wrapper carrying the block attributes as JSON. The markup
6 * is rendered on the client by view.js from the same shared component the editor
7 * uses, matching the b-blocks convention (see image-hotspot / infographic).
8 *
9 * @package bBlocks
10 */
11
12 $prefix = 'b-blocks-code-highlight';
13 $id = empty( $attributes['blockId'] ) ? wp_unique_id( "$prefix-" ) : "$prefix-" . $attributes['blockId'];
14
15 $planClass = BBlocks\Inc\Utils::isPro() ? 'pro' : 'free';
16
17 ?>
18 <div
19 <?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- get_block_wrapper_attributes() is properly escaped ?>
20 <?php echo get_block_wrapper_attributes([ 'class' => $planClass ]); ?>
21 id='<?php echo esc_attr( $id ); ?>'
22 data-attributes='<?php echo esc_attr( wp_json_encode( $attributes ) ); ?>'
23 ></div>
24