setup-wizard.php in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 8.5.36, at includes/setup-wizard.php
| 1 | <?php |
| 2 | /** |
| 3 | * Setup wizard for the plugin |
| 4 | * |
| 5 | * @package '' |
| 6 | * @since 8.4.10 |
| 7 | */ |
| 8 | |
| 9 | class WPVR_Setup_Wizard |
| 10 | { |
| 11 | |
| 12 | /** |
| 13 | * Initialize setup wizards |
| 14 | * |
| 15 | * @since 8.4.10 |
| 16 | */ |
| 17 | public function setup_wizard() |
| 18 | { |
| 19 | $this->output_html(); |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Output the rendered contents |
| 24 | * |
| 25 | * @since 8.4.10 |
| 26 | */ |
| 27 | private function output_html() |
| 28 | { |
| 29 | require_once plugin_dir_path(__FILE__) . '../admin/partials/wpvr-setup-wizard-views.php'; |
| 30 | exit(); |
| 31 | } |
| 32 | } |
| 33 |