On this page
_get_path_to_translation_from_lang_dir( string $domain ): string|false
This function has been deprecated. Use _get_path_to_translation() instead.
This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use _get_path_to_translation() instead.
Gets the path to a translation file in the languages directory for the current locale.
Description
Holds a cached list of available .mo files to improve performance.
See also
Parameters
$domainstring Required-
Text domain. Unique identifier for retrieving translated strings.
Return
string|false The path to the translation file or false if no translation file was found.
Source
File: wp-includes/deprecated.php. View all references
function _get_path_to_translation_from_lang_dir( $domain ) {
_deprecated_function( __FUNCTION__, '6.1.0', 'WP_Textdomain_Registry' );
static $cached_mofiles = null;
if ( null === $cached_mofiles ) {
$cached_mofiles = array();
$locations = array(
WP_LANG_DIR . '/plugins',
WP_LANG_DIR . '/themes',
);
foreach ( $locations as $location ) {
$mofiles = glob( $location . '/*.mo' );
if ( $mofiles ) {
$cached_mofiles = array_merge( $cached_mofiles, $mofiles );
}
}
}
$locale = determine_locale();
$mofile = "{$domain}-{$locale}.mo";
$path = WP_LANG_DIR . '/plugins/' . $mofile;
if ( in_array( $path, $cached_mofiles, true ) ) {
return $path;
}
$path = WP_LANG_DIR . '/themes/' . $mofile;
if ( in_array( $path, $cached_mofiles, true ) ) {
return $path;
}
return false;
}
Related
Uses
| Uses | Description |
|---|---|
| determine_locale() wp-includes/l10n.php | Determines the current locale desired for the request. |
| _deprecated_function() wp-includes/functions.php | Marks a function as deprecated and inform when it has been used. |
Used By
| Used By | Description |
|---|---|
| _get_path_to_translation() wp-includes/deprecated.php | Gets the path to a translation file for loading a textdomain just in time. |
Changelog
| Version | Description |
|---|---|
| 6.1.0 | This function has been deprecated. Use _get_path_to_translation() instead. |
| 4.7.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_get_path_to_translation_from_lang_dir