123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <?php
- /**
- * Locale API: WP_Textdomain_Registry class
- *
- * @package WordPress
- * @subpackage i18n
- * @since 6.1.0
- */
- /**
- * Core class used for registering text domains.
- *
- * @since 6.1.0
- */
- #[AllowDynamicProperties]
- class WP_Textdomain_Registry {
- /**
- * List of domains and all their language directory paths for each locale.
- *
- * @since 6.1.0
- *
- * @var array
- */
- protected $all = array();
- /**
- * List of domains and their language directory path for the current (most recent) locale.
- *
- * @since 6.1.0
- *
- * @var array
- */
- protected $current = array();
- /**
- * List of domains and their custom language directory paths.
- *
- * @see load_plugin_textdomain()
- * @see load_theme_textdomain()
- *
- * @since 6.1.0
- *
- * @var array
- */
- protected $custom_paths = array();
- /**
- * Holds a cached list of available .mo files to improve performance.
- *
- * @since 6.1.0
- *
- * @var array
- */
- protected $cached_mo_files;
- /**
- * Returns the languages directory path for a specific domain and locale.
- *
- * @since 6.1.0
- *
- * @param string $domain Text domain.
- * @param string $locale Locale.
- *
- * @return string|false MO file path or false if there is none available.
- */
- public function get( $domain, $locale ) {
- if ( isset( $this->all[ $domain ][ $locale ] ) ) {
- return $this->all[ $domain ][ $locale ];
- }
- return $this->get_path_from_lang_dir( $domain, $locale );
- }
- /**
- * Determines whether any MO file paths are available for the domain.
- *
- * This is the case if a path has been set for the current locale,
- * or if there is no information stored yet, in which case
- * {@see _load_textdomain_just_in_time()} will fetch the information first.
- *
- * @since 6.1.0
- *
- * @param string $domain Text domain.
- * @return bool Whether any MO file paths are available for the domain.
- */
- public function has( $domain ) {
- return ! empty( $this->current[ $domain ] ) || empty( $this->all[ $domain ] );
- }
- /**
- * Sets the language directory path for a specific domain and locale.
- *
- * Also sets the 'current' property for direct access
- * to the path for the current (most recent) locale.
- *
- * @since 6.1.0
- *
- * @param string $domain Text domain.
- * @param string $locale Locale.
- * @param string|false $path Language directory path or false if there is none available.
- */
- public function set( $domain, $locale, $path ) {
- $this->all[ $domain ][ $locale ] = $path ? trailingslashit( $path ) : false;
- $this->current[ $domain ] = $this->all[ $domain ][ $locale ];
- }
- /**
- * Sets the custom path to the plugin's/theme's languages directory.
- *
- * Used by {@see load_plugin_textdomain()} and {@see load_theme_textdomain()}.
- *
- * @param string $domain Text domain.
- * @param string $path Language directory path.
- */
- public function set_custom_path( $domain, $path ) {
- $this->custom_paths[ $domain ] = untrailingslashit( $path );
- }
- /**
- * Gets the path to the language directory for the current locale.
- *
- * Checks the plugins and themes language directories as well as any
- * custom directory set via {@see load_plugin_textdomain()} or {@see load_theme_textdomain()}.
- *
- * @since 6.1.0
- *
- * @see _get_path_to_translation_from_lang_dir()
- *
- * @param string $domain Text domain.
- * @param string $locale Locale.
- * @return string|false Language directory path or false if there is none available.
- */
- private function get_path_from_lang_dir( $domain, $locale ) {
- $locations = array(
- WP_LANG_DIR . '/plugins',
- WP_LANG_DIR . '/themes',
- );
- if ( isset( $this->custom_paths[ $domain ] ) ) {
- $locations[] = $this->custom_paths[ $domain ];
- }
- $mofile = "$domain-$locale.mo";
- foreach ( $locations as $location ) {
- if ( ! isset( $this->cached_mo_files[ $location ] ) ) {
- $this->set_cached_mo_files( $location );
- }
- $path = $location . '/' . $mofile;
- if ( in_array( $path, $this->cached_mo_files[ $location ], true ) ) {
- $this->set( $domain, $locale, $location );
- return trailingslashit( $location );
- }
- }
- // If no path is found for the given locale and a custom path has been set
- // using load_plugin_textdomain/load_theme_textdomain, use that one.
- if ( 'en_US' !== $locale && isset( $this->custom_paths[ $domain ] ) ) {
- $path = trailingslashit( $this->custom_paths[ $domain ] );
- $this->set( $domain, $locale, $path );
- return $path;
- }
- $this->set( $domain, $locale, false );
- return false;
- }
- /**
- * Reads and caches all available MO files from a given directory.
- *
- * @since 6.1.0
- *
- * @param string $path Language directory path.
- */
- private function set_cached_mo_files( $path ) {
- $this->cached_mo_files[ $path ] = array();
- $mo_files = glob( $path . '/*.mo' );
- if ( $mo_files ) {
- $this->cached_mo_files[ $path ] = $mo_files;
- }
- }
- }
|