PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 4.0.3
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v4.0.3
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
profile-builder / admin / setup-wizard / view-page-setup-wizard.php

view-page-setup-wizard.php in User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor 4.0.3, at admin/setup-wizard/view-page-setup-wizard.php

43 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit;
3
4 $steps_completion = WPPB_Setup_Wizard::get_completed_progress_steps();
5 ?>
6
7 <div class="wppb-setup-holder">
8
9 <div class="wppb-setup-wrap">
10
11 <img class="wppb-setup-logo" src="<?php echo esc_url( WPPB_PLUGIN_URL ); ?>assets/images/pb-banner.svg" alt="Paid Member Subscriptions" />
12
13 <ul class="wppb-setup-steps">
14 <?php foreach( $this->steps as $step => $label ) :
15 //if current step index is greater than the loop step index, we know that the loop step is completed
16 $completed = array_search( $this->step, array_keys( $this->steps ), true ) > array_search( $step, array_keys( $this->steps ), true );
17
18 if( $this->step === $step ) : ?>
19 <li class="active"><?php echo esc_html( $label ); ?></li>
20 <?php elseif( $completed ) : ?>
21 <li class="active <?php echo $steps_completion[$step] == 1 ? 'completed' : ''; ?>">
22 <a href="<?php echo esc_url( add_query_arg( 'step', $step ) ); ?>"><?php echo esc_html( $label ); ?></a>
23 </li>
24 <?php else : ?>
25 <li><?php echo esc_html( $label ); ?></li>
26 <?php endif;
27 endforeach; ?>
28 </ul>
29
30 <div class="wppb-setup-content">
31 <?php include_once 'view-tab-' . $this->step . '.php'; ?>
32 </div>
33
34 <div class="wppb-setup-background"></div>
35 </div>
36
37 <div class="wppb-setup-skip">
38 <div class="wppb-setup-skip__action">
39 <a href="<?php echo esc_url( admin_url( 'admin.php?page=profile-builder-dashboard' ) ); ?>"><?php esc_html_e( 'Skip Setup', 'profile-builder' ); ?></a>
40 </div>
41 </div>
42
43 </div>