settings_box(); $html = ob_get_clean(); if( preg_match( '~([\s\S]*?)~', $html, $match ) ) { header("Content-type: text/csv"); header("Content-Disposition: attachment; filename=".sanitize_title( get_bloginfo('name').' FV Player debug info.txt' ) ); header("Pragma: no-cache"); header("Expires: 0"); echo esc_html( $match[1] ); die(); } } } public function settings_box () { global $wpdb, $fv_wp_flowplayer_ver, $fv_wp_flowplayer_core_ver, $FV_Player_Pro, $FV_Player_VAST, $FV_Player_PayPerView; $theme_data = wp_get_theme(); $theme = $theme_data->Name . ' ' . $theme_data->Version; // Try to identifty the hosting provider $host = false; if( defined( 'WPE_APIKEY' ) ) { $host = 'WP Engine'; } elseif( defined( 'PAGELYBIN' ) ) { $host = 'Pagely'; } ?>