# wpvr/9.0.0/src/Frontend/Builders/Gutenberg.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 9.0.0. 19 lines.

- Page: https://pluginprobe.com/plugins/wpvr/9.0.0/code/src/Frontend/Builders/Gutenberg.php
- Raw: https://pluginprobe.com/plugins/wpvr/9.0.0/raw/src/Frontend/Builders/Gutenberg.php
- Modified: 2026-08-20T11:07:58+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/wpvr/9.0.0/code/src/Frontend/Builders/Gutenberg.php#L10-L20`.

```php
<?php

namespace RexTheme\WPVR\Frontend\Builders;

/**
 * Wrapper for the Gutenberg block registration.
 *
 * In Phase 1 the wpvr/wpvr-block registration lives as inline code inside
 * legacy/wpvr.php and runs when Bootstrap loads that file via require_once.
 * This class exists as the PSR-4 home for the block integration; Phase 2
 * will migrate the registration logic here.
 */
class Gutenberg {

    public function __construct() {
        // Block registration handled by legacy/wpvr.php inline code in Phase 1.
    }
}

```
