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;

}


User Contributed Notes

You must log in before being able to contribute a note or feedback.