Server IP : 192.64.112.168 / Your IP : 18.224.38.165 Web Server : Apache System : Linux nc-ph-2300-85.bluforrest.com 4.18.0-513.9.1.el8_9.x86_64 #1 SMP Sat Dec 2 05:23:44 EST 2023 x86_64 User : expressoneac ( 1128) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/expressoneac/www/wp-content/themes/woodmart/inc/admin/setup-wizard/templates/ |
Upload File : |
<?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; ?>