# wpvr/8.5.37/includes/setup-wizard.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 8.5.37. 33 lines.

- Page: https://pluginprobe.com/plugins/wpvr/8.5.37/code/includes/setup-wizard.php
- Raw: https://pluginprobe.com/plugins/wpvr/8.5.37/raw/includes/setup-wizard.php
- Modified: 2024-08-08T09:14:44+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.37/code/includes/setup-wizard.php#L10-L20`.

```php
<?php
/**
 * Setup wizard for the plugin
 *
 * @package ''
 * @since 8.4.10
 */

class WPVR_Setup_Wizard
{

    /**
     * Initialize setup wizards
     *
     * @since 8.4.10
     */
    public function setup_wizard()
    {
        $this->output_html();
    }

    /**
     * Output the rendered contents
     *
     * @since 8.4.10
     */
    private function output_html()
    {
        require_once plugin_dir_path(__FILE__) . '../admin/partials/wpvr-setup-wizard-views.php';
        exit();
    }
}

```
