| 1 |
<?php |
| 2 |
|
| 3 |
namespace RexTheme\WPVR\Frontend\Builders; |
| 4 |
|
| 5 |
/** |
| 6 |
* Wrapper for the legacy Divi module integration. |
| 7 |
*/ |
| 8 |
class Divi { |
| 9 |
|
| 10 |
public function __construct() { |
| 11 |
add_action( 'plugins_loaded', [ $this, 'init' ], 99 ); |
| 12 |
} |
| 13 |
|
| 14 |
public function init() { |
| 15 |
require_once WPVR_PLUGIN_LEGACY_DIR_PATH . 'includes/wpvr-divi-modules/wpvr_divi_modules.php'; |
| 16 |
\WPVR_Divi_modules::instance(); |
| 17 |
} |
| 18 |
} |
| 19 |
|