File "sidebar.php"
Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/admin/modules/setup-wizard/templates/sidebar.php
File size: 1.78 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Sidebar template.
*
* @package woodmart
*/
?>
<div class="xts-wizard-done-nav">
<div class="xts-wizard-done-nav-img">
<img src="<?php echo esc_url( $this->get_image_url( 'check.png' ) ); ?>" alt="check">
</div>
<h3>
<?php esc_html_e( 'Congratulations!', 'woodmart' ); ?>
</h3>
<p>
<?php esc_html_e( 'You have successfully installed our theme.', 'woodmart' ); ?>
</p>
<img class="xts-wizard-nav-bg-img" src="<?php echo esc_url( $this->get_image_url( 'themes.png' ) ); ?>" alt="themes">
</div>
<ul>
<?php
$index = 0;
$current_page = 'welcome';
if ( isset( $_GET['step'] ) && ! empty( $_GET['step'] ) ) { // phpcs:ignore
$current_page = trim( wp_unslash( $_GET['step'] ) ); // phpcs:ignore
}
$current_page_index = array_search( $current_page, array_keys( $this->available_pages ), true );
?>
<?php foreach ( $this->available_pages as $slug => $text ) : ?>
<?php
$classes = '';
if ( $index > $current_page_index ) {
$classes .= ' xts-disabled';
}
if ( $this->is_active_page( $slug ) ) {
$classes .= ' xts-active';
}
?>
<li class="<?php echo esc_attr( $classes ); ?>" data-slug="<?php echo esc_attr( $slug ); ?>">
<a href="<?php echo esc_url( $this->get_page_url( $slug ) ); ?>">
<?php echo esc_html( $text ); ?>
</a>
</li>
<?php $index++; ?>
<?php endforeach; ?>
</ul>
<?php if ( isset( $_GET['step'] ) && 'welcome' === $_GET['step'] || ! isset( $_GET['step'] ) ) : // phpcs:ignore ?>
<img class="xts-wizard-nav-bg-img" src="<?php echo esc_url( $this->get_image_url( 'welcome.png' ) ); ?>" alt="welcome themes">
<?php else : ?>
<a class="xts-wizard-help xts-i-alert-info" href="https://xtemos.com/forums/forum/woodmart-premium-template/" target="_blank">
<?php esc_html_e( 'Get help', 'woodmart' ); ?>
</a>
<?php endif; ?>