PluginProbe
The Innovative Form Builder – IvyForms / 0.8
The Innovative Form Builder – IvyForms v0.8
1.4.1 1.4 trunk 0.1.2 0.2 0.2.1 0.3 0.3.1 0.4 0.5 0.6 0.6.1 0.6.1-backup 0.6.1.1 0.7 0.8 0.8.1 0.8.2 0.9 0.9.1 1.0 1.1 1.1.1 1.2 1.3
ivyforms / backend / src / Services / Integrations / Gutenberg / assets / render.php

render.php in The Innovative Form Builder – IvyForms 0.8, at backend/src/Services/Integrations/Gutenberg/assets/render.php

20 lines 589 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Render callback for IvyForms Gutenberg block
5 *
6 * This file can be used as an alternative to the render_callback in block registration,
7 * but currently the rendering is handled by GutenbergBlock::render()
8 *
9 * @var array<string, string> $attributes Block attributes
10 * @var string $content Block content
11 * @var WP_Block $block Block instance
12 */
13
14 if (!defined('ABSPATH')) {
15 exit; // Exit if accessed directly
16 }
17
18 // The actual rendering is handled by GutenbergBlock::render()
19 // This file is kept for block.json compatibility
20