| 1 |
<?php |
| 2 |
/** |
| 3 |
* File containing the view used in the header of the setup pages. |
| 4 |
* |
| 5 |
* @package wp-job-manager |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
?> |
| 12 |
<div class="wrap wp_job_manager wp_job_manager_addons_wrap"> |
| 13 |
<h2><?php esc_html_e( 'WP Job Manager Setup', 'wp-job-manager' ); ?></h2> |
| 14 |
|
| 15 |
<ul class="wp-job-manager-setup-steps"> |
| 16 |
<?php |
| 17 |
$step_classes = array_fill( 1, 3, '' ); |
| 18 |
$step_classes[ $step ] = 'wp-job-manager-setup-active-step'; |
| 19 |
?> |
| 20 |
<li class="<?php echo sanitize_html_class( $step_classes[1] ); ?>"><?php esc_html_e( '1. Introduction', 'wp-job-manager' ); ?></li> |
| 21 |
<li class="<?php echo sanitize_html_class( $step_classes[2] ); ?>"><?php esc_html_e( '2. Page Setup', 'wp-job-manager' ); ?></li> |
| 22 |
<li class="<?php echo sanitize_html_class( $step_classes[3] ); ?>"><?php esc_html_e( '3. Done', 'wp-job-manager' ); ?></li> |
| 23 |
</ul> |
| 24 |
|