# wpfunnels/3.13.1/admin/views/base.php

WPFunnels – Funnel Builder for WooCommerce with Checkout &amp; One Click Upsell, version 3.13.1. 34 lines.

- Page: https://pluginprobe.com/plugins/wpfunnels/3.13.1/code/admin/views/base.php
- Raw: https://pluginprobe.com/plugins/wpfunnels/3.13.1/raw/admin/views/base.php
- Modified: 2024-09-30T04:26:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpfunnels/3.13.1/code/admin/views/base.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>

<div class="wpfnl-admin-views-wrapper">

	<?php

	/**
	 * Fires before the admin content is rendered
	 *
	 * @since 3.1.7
	 */
	do_action('wpfunnels/before-admin-content');
	?>

	<div id="wpfnl-admin-app"></div>

	<?php

	/**
	 * Fires after the admin content is rendered
	 *
	 * @since 3.1.7
	 */
	do_action('wpfunnels/after-admin-content');
	?>

</div>

```
