| 1 |
<?php |
| 2 |
defined('ABSPATH') || exit; |
| 3 |
?> |
| 4 |
<div class="basalam-onboarding-wrapper"> |
| 5 |
<div class="basalam-onboarding"> |
| 6 |
<!-- Step Indicator Section --> |
| 7 |
<div class="step-indicator"> |
| 8 |
<?php foreach ($steps as $step_number => $step) : |
| 9 |
$step_classes = ['step']; |
| 10 |
if ($step_number === $current_step) { |
| 11 |
$step_classes[] = 'active'; |
| 12 |
} |
| 13 |
if ($step_number < $current_step) { |
| 14 |
$step_classes[] = 'completed'; |
| 15 |
} |
| 16 |
?> |
| 17 |
<div class="<?php echo esc_html(implode(' ', $step_classes)); ?>"> |
| 18 |
<span class="step-number"><?php echo esc_html($step_number); ?></span> |
| 19 |
<span class="step-title"><?php echo esc_html($step['title']); ?></span> |
| 20 |
</div> |
| 21 |
<?php endforeach; ?> |
| 22 |
</div> |
| 23 |
|
| 24 |
<!-- Content Section --> |
| 25 |
<div class="step-content-wrapper"> |
| 26 |
<h1><?php echo esc_html($steps[$current_step]['title']); ?></h1> |
| 27 |
|
| 28 |
<?php |
| 29 |
if (is_callable($steps[$current_step]['content'])) { |
| 30 |
echo call_user_func($steps[$current_step]['content']); |
| 31 |
} else { |
| 32 |
echo esc_html($steps[$current_step]['content']); |
| 33 |
} |
| 34 |
?> |
| 35 |
</div> |
| 36 |
|
| 37 |
<!-- Navigation Section --> |
| 38 |
<div class="step-navigation"> |
| 39 |
<?php if ($current_step == 1) : ?> |
| 40 |
<a href="<?php echo esc_url(admin_url() . "admin.php?page=sync_basalam"); ?>" |
| 41 |
class="basalam-p basalam-skip-link"> |
| 42 |
گذر از � |
| 43 |
راحل |
| 44 |
</a> |
| 45 |
<a href="<?php echo esc_url(admin_url('admin.php?page=basalam-onboarding&step=' . ($current_step + 1))); ?>" |
| 46 |
class="basalam-primary-button basalam-p basalam-a"> |
| 47 |
بعدی |
| 48 |
</a> |
| 49 |
<?php endif; ?> |
| 50 |
|
| 51 |
<?php if ($current_step == 2) : ?> |
| 52 |
<div class="nav-buttons"> |
| 53 |
<a href="<?php echo esc_url(admin_url('admin.php?page=basalam-onboarding&step=' . ($current_step - 1))); ?>" |
| 54 |
class="basalam-nav-link basalam-p basalam-p__small"> |
| 55 |
قبلی |
| 56 |
</a> |
| 57 |
</div> |
| 58 |
<?php endif; ?> |
| 59 |
</div> |
| 60 |
</div> |
| 61 |
</div> |