Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/cartflows   php

Repository URL to install this package:

Version: 1.6.11 

/ views / admin-base.php

<?php
/**
 * Admin Base HTML.
 *
 * @package CARTFLOWS
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<div class="wcf-menu-page-wrapper">
	<div id="wcf-menu-page">
		<?php
		/*
		Comment.
			// require_once CARTFLOWS_ADMIN_CORE_DIR . 'views/fixed-header.php';
		*/
		?>
		<div class="wcf-menu-page-content wcf-clear">
		<?php

			do_action( 'cartflows_render_admin_page_content', $menu_page_slug, $page_action );
		?>
		</div>
	</div>
</div>