blob: e72493439ea9ffc7d80f66948167b66166e24939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?php
/**
* TMultiView and TView class file.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\I18N
*/
namespace Prado\I18N;
/**
* TGlobalizationAutoDetect class will automatically try to resolve the default
* culture using the user browser language settings.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
* @package Prado\I18N
*/
class TGlobalizationAutoDetect extends TGlobalization
{
private $_detectedLanguage;
public function init($xml)
{
parent::init($xml);
//set the culture according to browser language settings
$http = new core\HTTPNegotiator();
$languages = $http->getLanguages();
if(count($languages) > 0)
{
$this->_detectedLanguage=$languages[0];
$this->setCulture($languages[0]);
}
}
public function getDetectedLanguage()
{
return $this->_detectedLanguage;
}
}
|