| 1 |
<?php |
| 2 |
|
| 3 |
namespace RexTheme\WPVR\Frontend\Builders; |
| 4 |
|
| 5 |
/** |
| 6 |
* Wrapper for the Gutenberg block registration. |
| 7 |
* |
| 8 |
* In Phase 1 the wpvr/wpvr-block registration lives as inline code inside |
| 9 |
* legacy/wpvr.php and runs when Bootstrap loads that file via require_once. |
| 10 |
* This class exists as the PSR-4 home for the block integration; Phase 2 |
| 11 |
* will migrate the registration logic here. |
| 12 |
*/ |
| 13 |
class Gutenberg { |
| 14 |
|
| 15 |
public function __construct() { |
| 16 |
// Block registration handled by legacy/wpvr.php inline code in Phase 1. |
| 17 |
} |
| 18 |
} |
| 19 |
|