Beispiel #1
0
 function woo_ce_manage_form()
 {
     global $woo_ce;
     $tab = false;
     if (isset($_GET['tab'])) {
         $tab = $_GET['tab'];
     }
     $url = add_query_arg('page', 'woo_ce');
     woo_ce_memory_prompt();
     woo_ce_fail_notices();
     include_once 'templates/admin/woo-admin_ce-export.php';
 }
	function woo_cd_manage_form() {

		$tab = ( isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : false );
		// If Skip Overview is set then jump to Export screen
		if( $tab == false && woo_ce_get_option( 'skip_overview', false ) )
			$tab = 'export';

		woo_ce_fail_notices();

		include_once( WOO_CD_PATH . 'templates/admin/tabs.php' );

	}