ACF_Admin_Field_Groups::get_not_found_htmlpublicACF 6.0.0

Get the HTML for when a file is not found.

Method of the class: ACF_Admin_Field_Groups{}

No Hooks.

Returns

String. html.

Usage

$ACF_Admin_Field_Groups = new ACF_Admin_Field_Groups();
$ACF_Admin_Field_Groups->get_not_found_html();

Changelog

Since 6.0.0 Introduced.

ACF_Admin_Field_Groups::get_not_found_html() code ACF 6.0.4

public function get_not_found_html() {
	ob_start();
	acf_get_view( 'field-groups-empty' );
	return ob_get_clean();
}