# ivyforms/0.8/backend/src/Services/Integrations/Gutenberg/assets/render.php

The Innovative Form Builder – IvyForms, version 0.8. 20 lines.

- Page: https://pluginprobe.com/plugins/ivyforms/0.8/code/backend/src/Services/Integrations/Gutenberg/assets/render.php
- Raw: https://pluginprobe.com/plugins/ivyforms/0.8/raw/backend/src/Services/Integrations/Gutenberg/assets/render.php
- Modified: 2026-01-13T11:11:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ivyforms/0.8/code/backend/src/Services/Integrations/Gutenberg/assets/render.php#L10-L20`.

```php
<?php

/**
 * Render callback for IvyForms Gutenberg block
 *
 * This file can be used as an alternative to the render_callback in block registration,
 * but currently the rendering is handled by GutenbergBlock::render()
 *
 * @var array<string, string>   $attributes Block attributes
 * @var string                  $content    Block content
 * @var WP_Block                $block      Block instance
 */

if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly
}

// The actual rendering is handled by GutenbergBlock::render()
// This file is kept for block.json compatibility

```
