wpseek.com
A WordPress-centric search engine for devs and theme authors



_get_path_to_translation › WordPress Function

Since4.7.0
Deprecated6.1.0
_get_path_to_translation ( $domain, $reset = false )
Access:
  • private
Parameters: (2)
  • (string) $domain Text domain. Unique identifier for retrieving translated strings.
    Required: Yes
  • (bool) $reset Whether to reset the internal cache. Used by the switch to locale functionality.
    Required: No
    Default: false
See:
Returns:
  • (string|false) The path to the translation file or false if no translation file was found.
Defined at:
Codex:

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

Caches the retrieved results internally.


Source

function _get_path_to_translation( $domain, $reset = false ) {
	_deprecated_function( __FUNCTION__, '6.1.0', 'WP_Textdomain_Registry' );

	static $available_translations = array();

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

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

	return $available_translations[ $domain ];
}