| 1 |
<?php |
| 2 |
|
| 3 |
namespace RexTheme\WPVR\Frontend\Builders; |
| 4 |
|
| 5 |
/** |
| 6 |
* Wrapper for the legacy Bricks builder integration. |
| 7 |
* |
| 8 |
* Only loads when the Bricks theme is active, matching legacy behaviour. |
| 9 |
*/ |
| 10 |
class Bricks { |
| 11 |
|
| 12 |
public function __construct() { |
| 13 |
if ( wp_get_theme( 'bricks' )->exists() && 'bricks' === get_template() ) { |
| 14 |
require_once WPVR_PLUGIN_LEGACY_DIR_PATH . 'bricks/bricks.php'; |
| 15 |
\Manager::instance(); |
| 16 |
} |
| 17 |
} |
| 18 |
} |
| 19 |
|