PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / trunk
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell vtrunk
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / admin / modules / setup-wizard / views / views.php

views.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell trunk, at admin/modules/setup-wizard/views/views.php

33 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Setup wizard view
4 *
5 * @package
6 */
7 ?>
8
9 <!DOCTYPE html>
10 <html lang="en" xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?> >
11 <head>
12 <meta name="viewport" content="width=device-width"/>
13 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
14 <title><?php esc_html_e('WPFunnels - Setup Wizard', 'wpfnl'); ?></title>
15 <?php do_action( 'admin_enqueue_scripts' ); ?>
16 <?php do_action('admin_print_styles'); ?>
17 <?php do_action('admin_head'); ?>
18 <script type="text/javascript">
19 addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
20 var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>';
21 var pagenow = '';
22 </script>
23 </head>
24 <body class="wpfunnels-setup wp-core-ui">
25 <div id="wpfunnels_setup_wizard" style="height:100vh;"></div>
26 <?php
27 wp_enqueue_media(); // add media
28 wp_print_scripts(); // window.wp
29 do_action('admin_footer');
30 ?>
31 </body>
32 </html>
33