%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/views/setup/
Upload File :
Create Path :
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/views/setup/content.php

<?php
/**
 * Template for displaying content of setup wizard.
 *
 * @author  ThimPres
 * @package LearnPress/Admin/Views
 * @version 3.0.0
 */

defined( 'ABSPATH' ) or exit;
$wizard = LP_Setup_Wizard::instance();
?>

<div id="main">
    <div class="lp-setup-nav">
        <ul class="lp-setup-steps">
			<?php foreach ( $steps as $key => $step ) { ?>
                <li class="<?php echo $wizard->get_current_step() == $key ? 'active' : ''; ?>">
                    <span><?php echo $step['title']; ?></span>
                </li>
			<?php } ?>
        </ul>
        <div class="lp-setup-progress">
            <div class="active"
                 style="width: <?php echo intval( ( $wizard->get_step_position() + 1 ) / sizeof( $steps ) * 100 ); ?>%;"></div>
        </div>
    </div>
    <form id="learn-press-setup-form" class="lp-setup-content" name="lp-setup" method="post">
		<?php
		$step = $wizard->get_current_step( false );
		?>
        <input type="hidden" name="lp-setup-nonce"
               value="<?php echo wp_create_nonce( 'lp-setup-step-' . $step['slug'] ); ?>">
        <input type="hidden" name="lp-setup-step"
               value="<?php echo $step['slug']; ?>">
		<?php call_user_func( $step['callback'] ); ?>
		<?php if ( ! $wizard->is_last_step() ) { ?>
            <div class="buttons">

				<?php if ( ! $wizard->is_first_step() && ! ( array_key_exists( 'skip_prev_button', $step ) && $step['skip_prev_button'] === false ) ) { ?>
                    <a class="button button-skip-prev ajax"
                       href="<?php echo add_query_arg( 'skip', 'yes', $wizard->get_prev_url() ); ?>">
						<?php
						if ( ! empty( $step['skip_prev_button'] ) ) {
							echo $step['skip_prev_button'];
						} else {
							_e( 'Skip to prev step', 'learnpress' );
						}
						?>
                    </a>
				<?php } ?>

				<?php if ( ! $wizard->is_first_step() && ! $wizard->is_last_step() && ! ( array_key_exists( 'skip_next_button', $step ) && $step['skip_next_button'] === false ) ) { ?>
                    <a class="button button-skip-next"
                       href="<?php echo add_query_arg( 'skip', 'yes', $wizard->get_next_url() ); ?>">
						<?php
						if ( ! empty( $step['skip_prev_button'] ) ) {
							echo $step['skip_prev_button'];
						} else {
							_e( 'Skip to next step', 'learnpress' );
						}
						?>
                    </a>
				<?php } ?>

                <a class="button-dashboard-page"
                   href="<?php echo admin_url( 'index.php' ); ?>"><?php _e( 'Back to Dashboard', 'learnpress' ); ?></a>

				<?php if ( ! $wizard->is_first_step() && ! ( array_key_exists( 'back_button', $step ) && $step['back_button'] === false ) ) { ?>
                    <a class="button button-prev" href="<?php echo $wizard->get_prev_url(); ?>">
						<?php
						if ( ! empty( $step['next_button'] ) ) {
							echo $step['back_button'];
						} else {
							_e( 'Back', 'learnpress' );
						}
						?>
                    </a>
				<?php } ?>
				<?php if ( ! $wizard->is_last_step() && ! ( array_key_exists( 'next_button', $step ) && $step['next_button'] === false ) ) { ?>
                    <a class="button button-next" href="<?php echo $wizard->get_next_url(); ?>">
						<?php
						if ( ! empty( $step['next_button'] ) ) {
							echo $step['next_button'];
						} else {
							_e( 'Continue', 'learnpress' );
						}
						?>
                    </a>
				<?php } else { ?>
                    <a class="button button-finish">
						<?php _e( 'Finish', 'learnpress' ); ?>
                    </a>
				<?php } ?>
            </div>
		<?php } ?>
    </form>
    <span class="icon-loading"></span>
</div>

Zerion Mini Shell 1.0