# wpvr/9.1.2/src/Admin/Settings/General.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 9.1.2. 19 lines.

- Page: https://pluginprobe.com/plugins/wpvr/9.1.2/code/src/Admin/Settings/General.php
- Raw: https://pluginprobe.com/plugins/wpvr/9.1.2/raw/src/Admin/Settings/General.php
- Modified: 2026-08-20T11:07:58+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/9.1.2/code/src/Admin/Settings/General.php#L10-L20`.

```php
<?php

namespace RexTheme\WPVR\Admin\Settings;

/**
 * Standalone wrapper for the legacy WPVR_Basic_Setting class.
 *
 * Renders the plugin settings page by delegating to the legacy class.
 */
class General {

    private $legacy;

    public function __construct() {
        require_once WPVR_PLUGIN_LEGACY_DIR_PATH . 'admin/classes/class-wpvr-basic-setting.php';
        $this->legacy = new \WPVR_Basic_Setting();
    }
}

```
