| 1 |
<?php |
| 2 |
/** |
| 3 |
* Setup Wizard View Template |
| 4 |
* |
| 5 |
* This file is used to markup the setup wizard page of the plugin. |
| 6 |
* |
| 7 |
* @link https://searchatlas.com |
| 8 |
* @since 1.0.0 |
| 9 |
* |
| 10 |
* @package Metasync |
| 11 |
* @subpackage Metasync/views |
| 12 |
*/ |
| 13 |
|
| 14 |
// If this file is called directly, abort. |
| 15 |
if (!defined('WPINC')) { |
| 16 |
die; |
| 17 |
} |
| 18 |
|
| 19 |
$plugin_name = Metasync::get_effective_plugin_name(); |
| 20 |
?> |
| 21 |
|
| 22 |
<div class="wrap metasync-dashboard-wrap metasync-wizard-wrap"> |
| 23 |
|
| 24 |
<!-- Wizard Header --> |
| 25 |
<div class="wizard-header"> |
| 26 |
<div class="wizard-header-content"> |
| 27 |
<h1><?php echo esc_html($plugin_name); ?> Setup Wizard</h1> |
| 28 |
<p>Complete your setup in just a few easy steps</p> |
| 29 |
</div> |
| 30 |
<div class="wizard-header-actions"> |
| 31 |
<a href="?page=searchatlas" class="wizard-exit-link">Exit Setup</a> |
| 32 |
</div> |
| 33 |
</div> |
| 34 |
|
| 35 |
<!-- Progress Indicator --> |
| 36 |
<div class="wizard-progress"> |
| 37 |
<div class="wizard-progress-bar-container"> |
| 38 |
<div class="wizard-progress-bar" style="width: 16.66%;"></div> |
| 39 |
</div> |
| 40 |
<div class="wizard-progress-steps"> |
| 41 |
<div class="wizard-progress-step active" data-step="1"> |
| 42 |
<span class="step-number">1</span> |
| 43 |
<span class="step-label">Welcome</span> |
| 44 |
</div> |
| 45 |
<div class="wizard-progress-step" data-step="2"> |
| 46 |
<span class="step-number">2</span> |
| 47 |
<span class="step-label">Connect</span> |
| 48 |
</div> |
| 49 |
<div class="wizard-progress-step" data-step="3"> |
| 50 |
<span class="step-number">3</span> |
| 51 |
<span class="step-label">Import</span> |
| 52 |
</div> |
| 53 |
<div class="wizard-progress-step" data-step="4"> |
| 54 |
<span class="step-number">4</span> |
| 55 |
<span class="step-label">SEO Settings</span> |
| 56 |
</div> |
| 57 |
<div class="wizard-progress-step" data-step="5"> |
| 58 |
<span class="step-number">5</span> |
| 59 |
<span class="step-label">Schema</span> |
| 60 |
</div> |
| 61 |
<div class="wizard-progress-step" data-step="6"> |
| 62 |
<span class="step-number">6</span> |
| 63 |
<span class="step-label">Complete</span> |
| 64 |
</div> |
| 65 |
</div> |
| 66 |
</div> |
| 67 |
|
| 68 |
<!-- Step Container --> |
| 69 |
<div class="wizard-steps-container"> |
| 70 |
<?php |
| 71 |
// Render all wizard steps |
| 72 |
$this->render_step_welcome(); |
| 73 |
$this->render_step_connection(); |
| 74 |
$this->render_step_import(); |
| 75 |
$this->render_step_seo_settings(); |
| 76 |
$this->render_step_schema(); |
| 77 |
$this->render_step_complete(); |
| 78 |
?> |
| 79 |
</div> |
| 80 |
|
| 81 |
<!-- Navigation Footer --> |
| 82 |
<div class="wizard-footer"> |
| 83 |
<button class="wizard-btn wizard-btn-prev" disabled> |
| 84 |
<span>←</span> Previous |
| 85 |
</button> |
| 86 |
|
| 87 |
<button class="wizard-btn wizard-btn-skip"> |
| 88 |
Skip This Step |
| 89 |
</button> |
| 90 |
|
| 91 |
<button class="wizard-btn wizard-btn-next wizard-btn-primary"> |
| 92 |
Next <span>→</span> |
| 93 |
</button> |
| 94 |
</div> |
| 95 |
|
| 96 |
</div> |
| 97 |
|