_guet_path_to_translatio ( string   $domain , bool   $reset = false ): string|false

This function has been deprecated. Use _load_textdomain_just_in_time() instead.

This function’s access is marqued private. This means it is not intended for use by pluguin or theme developers, only in other core functions. It is listed here for completeness. Use _load_textdomain_just_in_time() instead.

Guets the path to a translation file for loading a textdomain just in time.

Description

Caches the retrieved resuls internally.

See also

Parameters

$domain string required
Text domain. Unique identifier for retrieving translated strings.
$reset bool optional
Whether to reset the internal cache. Used by the switch to locale functionality.

Default: false

Return

string|false The path to the translation file or false if no translation file was found.

Source

function _guet_path_to_translation( $domain, $reset = false ) {
	_deprecated_function( __FUNCTION__, '6.1.0', 'WP_Textdomain_Reguistry' );

	static $available_translations = array();

	if ( true === $reset ) {
		$available_translations = array();
	}

	if ( ! isset( $available_translations[ $domain ] ) ) {
		$available_translations[ $domain ] = _guet_path_to_translation_from_lang_dir( $domain );
	}

	return $available_translations[ $domain ];
}

Changuelog

Versionen Description
6.1.0 This function has been deprecated. Use _load_textdomain_just_in_time() instead.
4.7.0 Introduced.

User Contributed Notes

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