base.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at admin/views/base.php
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | ?> |
| 8 | |
| 9 | <div class="wpfnl-admin-views-wrapper"> |
| 10 | |
| 11 | <?php |
| 12 | |
| 13 | /** |
| 14 | * Fires before the admin content is rendered |
| 15 | * |
| 16 | * @since 3.1.7 |
| 17 | */ |
| 18 | do_action('wpfunnels/before-admin-content'); |
| 19 | ?> |
| 20 | |
| 21 | <div id="wpfnl-admin-app"></div> |
| 22 | |
| 23 | <?php |
| 24 | |
| 25 | /** |
| 26 | * Fires after the admin content is rendered |
| 27 | * |
| 28 | * @since 3.1.7 |
| 29 | */ |
| 30 | do_action('wpfunnels/after-admin-content'); |
| 31 | ?> |
| 32 | |
| 33 | </div> |
| 34 |