Server IP : 14.241.111.210 / Your IP : 18.221.87.167 Web Server : Apache System : Linux localhost.localdomain 3.10.0-1160.66.1.el7.x86_64 #1 SMP Wed May 18 16:02:34 UTC 2022 x86_64 User : www ( 1001) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/ohapaint.vn/wp-content/plugins/contact-form-7/includes/ |
Upload File : |
<?php function wpcf7_l10n() { static $l10n = array(); if ( ! empty( $l10n ) ) { return $l10n; } if ( ! is_admin() ) { return $l10n; } require_once( ABSPATH . 'wp-admin/includes/translation-install.php' ); $api = translations_api( 'plugins', array( 'slug' => 'contact-form-7', 'version' => WPCF7_VERSION, ) ); if ( is_wp_error( $api ) or empty( $api['translations'] ) ) { return $l10n; } foreach ( (array) $api['translations'] as $translation ) { if ( ! empty( $translation['language'] ) and ! empty( $translation['english_name'] ) ) { $l10n[$translation['language']] = $translation['english_name']; } } return $l10n; } function wpcf7_is_valid_locale( $locale ) { $pattern = '/^[a-z]{2,3}(?:_[a-zA-Z_]{2,})?$/'; return (bool) preg_match( $pattern, $locale ); } function wpcf7_is_rtl( $locale = '' ) { static $rtl_locales = array( 'ar' => 'Arabic', 'ary' => 'Moroccan Arabic', 'azb' => 'South Azerbaijani', 'fa_IR' => 'Persian', 'haz' => 'Hazaragi', 'he_IL' => 'Hebrew', 'ps' => 'Pashto', 'ug_CN' => 'Uighur', ); if ( empty( $locale ) and function_exists( 'is_rtl' ) ) { return is_rtl(); } if ( empty( $locale ) ) { $locale = determine_locale(); } return isset( $rtl_locales[$locale] ); } function wpcf7_load_textdomain( $locale = '' ) { static $locales = array(); if ( empty( $locales ) ) { $locales = array( determine_locale() ); } $available_locales = array_merge( array( 'en_US' ), get_available_languages() ); if ( ! in_array( $locale, $available_locales ) ) { $locale = $locales[0]; } if ( $locale === end( $locales ) ) { return false; } else { $locales[] = $locale; } $domain = WPCF7_TEXT_DOMAIN; if ( is_textdomain_loaded( $domain ) ) { unload_textdomain( $domain ); } $mofile = sprintf( '%s-%s.mo', $domain, $locale ); $domain_path = path_join( WPCF7_PLUGIN_DIR, 'languages' ); $loaded = load_textdomain( $domain, path_join( $domain_path, $mofile ) ); if ( ! $loaded ) { $domain_path = path_join( WP_LANG_DIR, 'plugins' ); load_textdomain( $domain, path_join( $domain_path, $mofile ) ); } return true; }