| 1 |
<?php |
| 2 |
/** |
| 3 |
* Admin Base HTML. |
| 4 |
* |
| 5 |
* @package CARTFLOWS |
| 6 |
*/ |
| 7 |
|
| 8 |
// Exit if accessed directly. |
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit; |
| 11 |
} |
| 12 |
set_current_screen(); |
| 13 |
?> |
| 14 |
<!doctype html> |
| 15 |
<html <?php language_attributes(); ?>> |
| 16 |
<head> |
| 17 |
<meta name="viewport" content="width=device-width" /> |
| 18 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 19 |
<title><?php esc_html_e( 'CartFlows Setup', 'cartflows' ); ?></title> |
| 20 |
|
| 21 |
<script type="text/javascript"> |
| 22 |
addLoadEvent = function(func){ |
| 23 |
if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}} |
| 24 |
}; |
| 25 |
var ajaxurl = '<?php echo esc_url( admin_url( 'admin-ajax.php', 'relative' ) ); ?>'; |
| 26 |
var pagenow = ''; |
| 27 |
</script> |
| 28 |
<?php wp_print_scripts( array( 'cartflows-wizard', 'cartflows-setup-helper' ) ); ?> |
| 29 |
<?php |
| 30 |
do_action( 'admin_print_styles' ); |
| 31 |
do_action( 'admin_head' ); |
| 32 |
?> |
| 33 |
</head> |
| 34 |
<body class="cartflows-setup wp-core-ui" style="background-color: #f0f0f1; "> |
| 35 |
<div id="wcf-setup-wizard-page" class="wcf-setup-wizard-page-wrapper" ></div> |
| 36 |
</body> |
| 37 |
<?php wp_footer(); ?> |
| 38 |
</html> |
| 39 |
<?php exit; ?> |
| 40 |
|