| 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 |
|