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

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 8.5.79. 18 lines.

- Page: https://pluginprobe.com/plugins/wpvr/8.5.79/code/oxygen/oxy-manager.php
- Raw: https://pluginprobe.com/plugins/wpvr/8.5.79/raw/oxygen/oxy-manager.php
- Modified: 2026-08-13T12:07:48+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.79/code/oxygen/oxy-manager.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

/* 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;
}

```
