| 1 |
<?php |
| 2 |
/** |
| 3 |
* Render all steps |
| 4 |
*/ |
| 5 |
|
| 6 |
namespace UltimatePostKit\SetupWizard; |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
|
| 12 |
?> |
| 13 |
<div class="bdt-step-header"> |
| 14 |
<div class="bdt-shape-elements"> |
| 15 |
<div class="bdt-shape bdt-shape-circle"></div> |
| 16 |
<div class="bdt-shape bdt-shape-square"></div> |
| 17 |
<div class="bdt-shape bdt-shape-triangle"></div> |
| 18 |
<div class="bdt-shape bdt-shape-dots"></div> |
| 19 |
<div class="bdt-shape bdt-shape-ring"></div> |
| 20 |
<div class="bdt-shape bdt-shape-plus"></div> |
| 21 |
</div> |
| 22 |
|
| 23 |
<div class="bdt-wizard-progress-header"> |
| 24 |
<ul class="bdt-wizard-progress"> |
| 25 |
<li class="bdt-wizard-progress-item active" data-step="welcome"><?php esc_html_e( 'Welcome', 'ultimate-post-kit' ); ?></li> |
| 26 |
<li class="bdt-wizard-progress-item" data-step="features"><?php esc_html_e( 'Choose Features', 'ultimate-post-kit' ); ?></li> |
| 27 |
<li class="bdt-wizard-progress-item" data-step="integration"><?php esc_html_e( 'Integration', 'ultimate-post-kit' ); ?></li> |
| 28 |
<li class="bdt-wizard-progress-item" data-step="finish"><?php esc_html_e( 'Good to Go', 'ultimate-post-kit' ); ?></li> |
| 29 |
</ul> |
| 30 |
</div> |
| 31 |
<div class="bdt-step-content"> |
| 32 |
<div class="bdt-wizard-container"> |
| 33 |
<?php |
| 34 |
require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/welcome.php'; |
| 35 |
require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/features.php'; |
| 36 |
require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/integration.php'; |
| 37 |
require_once plugin_dir_path( BDTUPK__FILE__ ) . 'includes/setup-wizard/views/good-to-go.php'; |
| 38 |
?> |
| 39 |
</div> |
| 40 |
</div> |
| 41 |
</div> |