PluginProbe
StoreEngine — Complete eCommerce Solution with Memberships, Licensing, Affiliates & More / 2.2.0
StoreEngine — Complete eCommerce Solution with Memberships, Licensing, Affiliates & More v2.2.0
2.3.0 2.2.0 2.1.1 2.1.0 2.0.0 1.10.0 1.9.1 1.9.0 1.2.1 1.2.2 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 All 59 releases
storeengine / includes / admin / views / setup.php

setup.php in StoreEngine — Complete eCommerce Solution with Memberships, Licensing, Affiliates & More 2.2.0, at includes/admin/views/setup.php

32 lines 982 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace StoreEngine\Admin\Views;
3
4 use StoreEngine\Utils\Helper;
5
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit; // Exit if accessed directly.
8 }
9
10 // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound, WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
11
12 ?>
13 <!DOCTYPE html>
14 <html <?php language_attributes(); ?>>
15 <head>
16 <meta charset="utf-8" />
17 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
18 <title><?php echo esc_html__( 'StoreEngine Setup Wizard', 'storeengine' ); ?></title>
19 <base target="_parent">
20 <?php do_action( 'admin_print_styles' ); ?>
21 </head>
22 <body>
23 <div id="storeengine_setup_screen_wrap" class="storeengine-setup-screen-wrap">
24 <?php
25 $preloader = apply_filters( 'storeengine/preloader', Helper::get_preloader_html() );
26 echo wp_kses_post( $preloader );
27 ?>
28 </div>
29 <?php do_action( 'admin_print_footer_scripts' ); ?>
30 </body>
31 </html>
32