# wpvr/8.5.39/oxygen/oxy-manager.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 8.5.39. 17 lines.

- Page: https://pluginprobe.com/plugins/wpvr/8.5.39/code/oxygen/oxy-manager.php
- Raw: https://pluginprobe.com/plugins/wpvr/8.5.39/raw/oxygen/oxy-manager.php
- Modified: 2022-05-19T05:47:16+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/8.5.39/code/oxygen/oxy-manager.php#L10-L20`.

```php
<?php

/* main class for this plugin */
include_once 'WPVR_OXY_INTEGRATION.php';

global $wpvr_oxy_integration;
$wpvr_oxy_integration = new WPVR_OXY_INTEGRATION();

/* Our Base Oxygen Element to extend upon */
include_once 'WPVR_CUSTOM_OXY_ELEMENT.php';

/* Include all of our Oxygen Elements dynamically */
$elements_filenames = glob(plugin_dir_path(__FILE__)."elements/*.php");
foreach ($elements_filenames as $filename) {
    include_once $filename;
}

```
