PluginProbe
CartFlows – Funnel Builder & Checkout Plugin for WooCommerce / trunk
CartFlows – Funnel Builder & Checkout Plugin for WooCommerce vtrunk
3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.1 trunk 1.0.4 1.1.0 1.1.0.1 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.17 1.1.18 1.1.19 1.1.2 1.1.20 1.1.21 All 160 releases
cartflows / wizard / views / wizard-base.php

wizard-base.php in CartFlows – Funnel Builder & Checkout Plugin for WooCommerce trunk, at wizard/views/wizard-base.php

40 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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