ACF_Legacy_Locations::__issetpublicACF 5.9.0

Magic __isset method for backwards compatibility.

Method of the class: ACF_Legacy_Locations{}

No Hooks.

Returns

true|false.

Usage

$ACF_Legacy_Locations = new ACF_Legacy_Locations();
$ACF_Legacy_Locations->__isset( $key );
$key(string) (required)
Key name.

Changelog

Since 5.9.0 Introduced.

ACF_Legacy_Locations::__isset() code ACF 6.8.8

public function __isset( $key ) {
	// _doing_it_wrong( __FUNCTION__, __( 'The ACF_Locations class should not be accessed directly.', 'acf' ), '5.9.0' );
	return (
	$key === 'locations'
	);
}