ACF\AI\GEO

Schema::get_property_namepublic staticACF 6.8.0

Get just the property name from a qualified property string

Method of the class: Schema{}

No Hooks.

Returns

String. The property name without the type prefix.

Usage

$result = Schema::get_property_name( $qualified_property );
$qualified_property(string) (required)
The property string, optionally prefixed with Type.

Changelog

Since 6.8.0 Introduced.

Schema::get_property_name() code ACF 6.8.8

public static function get_property_name( $qualified_property ) {
	return self::parse_qualified_property( $qualified_property )['property'];
}