Project

General

Profile

1
<?php
2

    
3
/**
4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5
 *
6
 * This program is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
 */
19

    
20
/**
21
 * Translate.php
22
 *
23
 * @category     Core
24
 * @package      Core_Translation
25
 * @copyright    Werner v.d.Decken <wkl@isteam.de>
26
 * @author       Werner v.d.Decken <wkl@isteam.de>
27
 * @license      http://www.gnu.org/licenses/gpl.html   GPL License
28
 * @version      0.0.1
29
 * @revision     $Revision: 1873 $
30
 * @link         $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/framework/Translate.php $
31
 * @lastmodified $Date: 2013-02-27 01:15:20 +0100 (Wed, 27 Feb 2013) $
32
 * @since        File available since 12.01.2013
33
 * @description  basic class of the Translate package
34
 */
35
class Translate {
36
	
37
/** holds the active singleton instance */
38
	private static $_oInstance     = null;
39
/** name of the default adaptor */	
40
	protected $sAdaptor            = 'WbOldStyle';
41
/** setting for the system language (default: en) */
42
	protected $sSystemLanguage     = 'en';
43
/** setting for the default runtime language (default: en) */
44
	protected $sDefaultLanguage    = 'en';
45
/** setting for the user defined language (default: en) */
46
	protected $sUserLanguage       = 'en';
47
/** switch cache on/off */
48
	protected $bUseCache           = true;
49
/** defines if the keys of undefines translation should be preserved */
50
	protected $bRemoveMissing      = false;
51
/** can hold up to 31 boolean option settings */
52
	protected $iOptions            = 0;
53
/** List of loaded translation tables */
54
	protected $aLoadedAddons       = array();
55
/** TranslationTable object of the core and additional one activated addon */	
56
	protected $aActiveTranslations = array();
57
/** possible option flags */	
58
	const CACHE_DISABLED = 1; // ( 2^0 )
59
	const KEEP_MISSING   = 2; // ( 2^1 )
60
	
61
/** prevent class from public instancing and get an object to hold extensions */
62
	protected function  __construct() {}
63
/** prevent from cloning existing instance */
64
	private function __clone() {}
65
/**
66
 * get a valid instance of this class
67
 * @return object
68
 */
69
	static public function getInstance() {
70
		if( is_null(self::$_oInstance) ) {
71
            $c = __CLASS__;
72
            self::$_oInstance = new $c;
73
		}
74
		return self::$_oInstance;
75
	}
76
/**
77
 * Initialize the Translations
78
 * @param string SystemLanguage code ('de' || 'de_CH' || 'de_CH_uri')
79
 * @param string DefaultLanguage code ('de' || 'de_CH' || 'de_CH_uri')
80
 * @param string UserLanguage code ('de' || 'de_CH' || 'de_CH_uri')
81
 * @param string Name of the adaptor to use
82
 * @param integer possible options (DISABLE_CACHE | KEEP_MISSING)
83
 * @throws TranslationException
84
 */
85
	public function initialize($sSystemLanguage, 
86
	                           $sDefaultLanguage, 
87
	                           $sUserLanguage = '', 
88
	                           $sAdaptor = 'WbOldStyle', 
89
	                           $iOptions = 0)
90
	{
91
		if(!class_exists('TranslateAdaptor'.$sAdaptor)) {
92
			throw new TranslationException('unable to load adaptor: '.$sAdaptor);
93
		}
94
		$this->sAdaptor       = 'TranslateAdaptor'.$sAdaptor;
95
		$this->bUseCache      = (($iOptions & self::CACHE_DISABLED) == 0);
96
		$this->bRemoveMissing = (($iOptions & self::KEEP_MISSING) == 0);
97
		// if no system language is set then use language 'en'
98
		$this->sSystemLanguage = (trim($sSystemLanguage) == '' ? 'en' : $sSystemLanguage);
99
		// if no default language is set then use system language
100
		$this->sDefaultLanguage = (trim($sDefaultLanguage) == '' 
101
		                            ? $this->sSystemLanguage 
102
		                            : $sDefaultLanguage);
103
		// if no user language is set then use default language
104
		$this->sUserLanguage = (trim($sUserLanguage) == '' 
105
		                         ? $this->sDefaultLanguage
106
		                         : $sUserLanguage);
107
		$sPattern = '/^[a-z]{2,3}(?:(?:[_-][a-z]{2})?(?:[_-][a-z0-9]{2,4})?)$/siU';
108
		// validate language codes
109
		if(preg_match($sPattern, $this->sSystemLanguage) &&
110
		   preg_match($sPattern, $this->sDefaultLanguage) &&
111
		   preg_match($sPattern, $this->sUserLanguage))
112
		{
113
		// load core translations and activate it
114
			$oTmp = new TranslationTable('', 
115
			                             $this->sSystemLanguage, 
116
			                             $this->sDefaultLanguage, 
117
			                             $this->sUserLanguage,
118
			                             $this->bUseCache);
119
			$this->aLoadedAddons['core'] = $oTmp->load($this->sAdaptor);
120
			$this->aActiveTranslations[0] = $this->aLoadedAddons['core'];
121
			if(sizeof($this->aLoadedAddons['core']) == 0) {
122
			// throw an exception for missing translations
123
				throw new TranslationException('missing core translations');
124
			}
125
		}else {
126
		// throw an exception for invalid or missing language codes
127
			$sMsg = 'Invalid language codes: ['.$this->sSystemLanguage.'] or ['
128
			      . $this->sDefaultLanguage.'] or ['.$this->sUserLanguage.']';
129
			throw new TranslationException($sMsg);
130
		}
131
	}
132
/**
133
 * Add new addon
134
 * @param string Addon descriptor (i.e. 'modules\myAddon')
135
 * @return bool 
136
 */	
137
	public function addAddon($sAddon)
138
	{
139
		if(!(strtolower($sAddon) == 'core' || $sAddon == '' || isset($this->aLoadedAddons[$sAddon]))) {
140
		// load requested addon translations if needed and possible
141
			$oTmp = new TranslationTable($sAddon, 
142
			                             $this->sSystemLanguage, 
143
			                             $this->sDefaultLanguage, 
144
			                             $this->sUserLanguage,
145
			                             $this->bUseCache);
146
			$this->aLoadedAddons[$sAddon] = $oTmp->load($this->sAdaptor);
147
		}
148
	}
149
/**
150
 * Activate Addon
151
 * @param string Addon descriptor (i.e. 'modules\myAddon')
152
 */	
153
	public function enableAddon($sAddon)
154
	{
155
		if(!(strtolower($sAddon) == 'core' || $sAddon == '')) {
156
			if(!isset($this->aLoadedAddons[$sAddon])) {
157
				$this->addAddon($sAddon);
158
			}
159
			$this->aActiveTranslations[1] = $this->aLoadedAddons[$sAddon];
160
		}
161
		
162
	}
163
/**
164
 * Dissable active addon
165
 */	
166
	public function disableAddon()
167
	{
168
		if(isset($this->aActiveTranslations[1])) {
169
			unset($this->aActiveTranslations[1]);
170
		}
171
	}
172
	
173
/**
174
 * Is key available
175
 * @param string Language key
176
 * @return bool
177
 */
178
	public function __isset($sKey)
179
	{
180
		foreach($this->aActiveTranslations as $oAddon) {
181
			if(isset($oAddon->$sKey)) {
182
			// is true if at least one translation is found
183
				return true;
184
			}
185
		}
186
		return false;
187
	}
188
/**
189
 * Get translation text
190
 * @param string Language key
191
 * @return string Translation text
192
 */	
193
	public function __get($sKey)
194
	{
195
		$sRetval = ($this->bRemoveMissing ? '' : '#'.$sKey.'#');
196
		foreach($this->aActiveTranslations as $oAddon) {
197
			if(isset($oAddon->$sKey)) {
198
			// search the last matching translation (Core -> Addon)
199
				$sRetval = $oAddon->$sKey;
200
			}
201
		}
202
		return $sRetval;
203
	}
204
/**
205
 * Return complete table of translations
206
 * @return array
207
 * @deprecated for backward compatibility only. Will be removed shortly
208
 */	
209
	public function getLangArray()
210
	{
211
		$aSumTranslations = array();
212
		foreach($this->aActiveTranslations as $oTranslationTable) {
213
			if(get_class($oTranslationTable) == 'TranslationTable') {
214
				$aSumTranslations = array_merge($aSumTranslations, $oTranslationTable->getArray());
215
			}
216
		}
217
		return $aSumTranslations;
218
	}
219
	
220
} // end of class Translate
221
// //////////////////////////////////////////////////////////////////////////////////// //
222
/**
223
 * TranslationException
224
 *
225
 * @category     Core
226
 * @package      Core_Translation
227
 * @author       Werner v.d.Decken <wkl@isteam.de>
228
 * @copyright    Werner v.d.Decken <wkl@isteam.de>
229
 * @license      http://www.gnu.org/licenses/gpl.html   GPL License
230
 * @version      2.9.0
231
 * @revision     $Revision: 1873 $
232
 * @lastmodified $Date: 2013-02-27 01:15:20 +0100 (Wed, 27 Feb 2013) $
233
 * @description  Exceptionhandler for the Translation class and depending classes
234
 */
235
class TranslationException extends AppException {}
(7-7/30)