ACF_Legacy_Location::__callpublicACF 5.9.0

Magic __call method for backwards compatibility.

Method of the class: ACF_Legacy_Location{}

No Hooks.

Returns

Mixed.

Usage

$ACF_Legacy_Location = new ACF_Legacy_Location();
$ACF_Legacy_Location->__call( $name, $arguments );
$name(string) (required)
The method name.
$arguments(array) (required)
The array of arguments.

Changelog

Since 5.9.0 Introduced.

ACF_Legacy_Location::__call() code ACF 6.8.8

public function __call( $name, $arguments ) {

	// Add backwards compatibility for legacy methods.
	// - Combine 3x legacy filters cases together (remove first args).
	switch ( $name ) {
		case 'rule_match':
			$method       = isset( $method ) ? $method : 'match';
			$arguments[3] = isset( $arguments[3] ) ? $arguments[3] : false; // Add $field_group param.
		case 'rule_operators':
			$method = isset( $method ) ? $method : 'get_operators';
		case 'rule_values':
			$method = isset( $method ) ? $method : 'get_values';
			array_shift( $arguments );
			return call_user_func_array( array( $this, $method ), $arguments );
		case 'compare':
			return call_user_func_array( array( $this, 'compare_to_rule' ), $arguments );
	}
}