PluginProbe
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress / 8.5.76
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress v8.5.76
9.1.2 9.1.1 9.1.0 9.0.3 9.0.2 9.0.1 9.0.0 8.5.79 8.5.78 8.5.77 8.5.76 8.5.75 8.5.74 8.5.73 8.5.72 8.5.71 8.5.70 8.5.69 8.5.68 8.5.35 8.5.36 8.5.37 8.5.38 8.5.39 8.5.4 All 221 releases
wpvr / oxygen / oxy-manager.php

oxy-manager.php in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 8.5.76, at oxygen/oxy-manager.php

18 lines 520 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
4 /* main class for this plugin */
5 include_once 'WPVR_OXY_INTEGRATION.php';
6
7 global $wpvr_oxy_integration;
8 $wpvr_oxy_integration = new WPVR_OXY_INTEGRATION();
9
10 /* Our Base Oxygen Element to extend upon */
11 include_once 'WPVR_CUSTOM_OXY_ELEMENT.php';
12
13 /* Include all of our Oxygen Elements dynamically */
14 $elements_filenames = glob(plugin_dir_path(__FILE__)."elements/*.php");
15 foreach ($elements_filenames as $filename) {
16 include_once $filename;
17 }
18