PluginProbe
M Chart / 1.11
M Chart v1.11
2.3.2 2.3.1 2.3 2.2.2 2.2.1 2.2 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10 1.10.1 1.11 1.11.1 1.11.2 1.12 1.2 1.2.1 1.3 1.3.1 1.3.2 All 53 releases
m-chart / components / block / chart / render.php

render.php in M Chart 1.11, at components/block/chart/render.php

15 lines 333 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Server-side rendering of the `wtblocks/chart` block.
4 *
5 * $attributes (array): The block attributes.
6 * $content (string): The block default content.
7 * $block (WP_Block): The block instance.
8 */
9
10 $chart_id = $attributes['chartId'] ?? null;
11
12 if ( ! empty( $chart_id ) ) :
13 echo '[chart id="' . $chart_id . '"]';
14 endif;
15