get_bsf_systeminfo()
Get BSF systeminfo.
Description
Source
File: admin/bsf-core/includes/system-info.php
function get_bsf_systeminfo() {
	$table = '<div class="bsf-system-info-wrapper">';
	ob_start();
	bsf_systeminfo();
	$table .= ob_get_clean();
	$table .= '</div>';
	return $table;
}
			Expand full source code Collapse full source code View on Trac