| 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: 2096 $
 | 
  
    | 30 |  * @link         $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/framework/Translate.php $
 | 
  
    | 31 |  * @lastmodified $Date: 2014-02-03 13:08:39 +0100 (Mon, 03 Feb 2014) $
 | 
  
    | 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 | // **  */
 | 
  
    | 58 |     protected $aPrivatePriorities = array();
 | 
  
    | 59 | /** possible option flags */	
 | 
  
    | 60 | 	const CACHE_DISABLED = 1; // ( 2^0 )
 | 
  
    | 61 | 	const KEEP_MISSING   = 2; // ( 2^1 )
 | 
  
    | 62 | /** types of translation tables */
 | 
  
    | 63 |     const TABLE_CORE               = 0;
 | 
  
    | 64 |     const TABLE_ADDON              = 1;
 | 
  
    | 65 |     const TABLE_THEME              = 2;
 | 
  
    | 66 |     const TABLE_TEMPLATE           = 2;
 | 
  
    | 67 |     const FIRST_USER_DEFINED_TABLE = 10;
 | 
  
    | 68 |     const STEP_USER_DEFINED_TABLES = 5;
 | 
  
    | 69 | /** prevent class from public instancing and get an object to hold extensions */
 | 
  
    | 70 | 	protected function  __construct() {}
 | 
  
    | 71 | /** prevent from cloning existing instance */
 | 
  
    | 72 | 	private function __clone() {}
 | 
  
    | 73 | /**
 | 
  
    | 74 |  * get a valid instance of this class
 | 
  
    | 75 |  * @return object
 | 
  
    | 76 |  */
 | 
  
    | 77 | 	static public function getInstance() {
 | 
  
    | 78 | 		if( is_null(self::$_oInstance) ) {
 | 
  
    | 79 |             $c = __CLASS__;
 | 
  
    | 80 |             self::$_oInstance = new $c;
 | 
  
    | 81 | 		}
 | 
  
    | 82 | 		return self::$_oInstance;
 | 
  
    | 83 | 	}
 | 
  
    | 84 | /**
 | 
  
    | 85 |  * Initialize the Translations
 | 
  
    | 86 |  * @param string SystemLanguage code ('de' || 'de_CH' || 'de_CH_uri')
 | 
  
    | 87 |  * @param string DefaultLanguage code ('de' || 'de_CH' || 'de_CH_uri')
 | 
  
    | 88 |  * @param string UserLanguage code ('de' || 'de_CH' || 'de_CH_uri')
 | 
  
    | 89 |  * @param string Name of the adaptor to use
 | 
  
    | 90 |  * @param integer possible options (DISABLE_CACHE | KEEP_MISSING)
 | 
  
    | 91 |  * @throws TranslationException
 | 
  
    | 92 |  */
 | 
  
    | 93 | 	public function initialize($sSystemLanguage, 
 | 
  
    | 94 | 	                           $sDefaultLanguage, 
 | 
  
    | 95 | 	                           $sUserLanguage = '', 
 | 
  
    | 96 | 	                           $sAdaptor = 'WbOldStyle', 
 | 
  
    | 97 | 	                           $iOptions = 0)
 | 
  
    | 98 | 	{
 | 
  
    | 99 | 		if(!class_exists('TranslateAdaptor'.$sAdaptor)) {
 | 
  
    | 100 | 			throw new TranslationException('unable to load adaptor: '.$sAdaptor);
 | 
  
    | 101 | 		}
 | 
  
    | 102 | 		$this->sAdaptor       = 'TranslateAdaptor'.$sAdaptor;
 | 
  
    | 103 | 		$this->bUseCache      = (!($iOptions & self::CACHE_DISABLED));
 | 
  
    | 104 | 		$this->bRemoveMissing = (!($iOptions & self::KEEP_MISSING));
 | 
  
    | 105 | 		// if no system language is set then use language 'en'
 | 
  
    | 106 | 		$this->sSystemLanguage = (trim($sSystemLanguage) == '' ? 'en' : $sSystemLanguage);
 | 
  
    | 107 | 		// if no default language is set then use system language
 | 
  
    | 108 | 		$this->sDefaultLanguage = (trim($sDefaultLanguage) == '' 
 | 
  
    | 109 | 		                            ? $this->sSystemLanguage 
 | 
  
    | 110 | 		                            : $sDefaultLanguage);
 | 
  
    | 111 | 		// if no user language is set then use default language
 | 
  
    | 112 | 		$this->sUserLanguage = (trim($sUserLanguage) == '' 
 | 
  
    | 113 | 		                         ? $this->sDefaultLanguage
 | 
  
    | 114 | 		                         : $sUserLanguage);
 | 
  
    | 115 | 		$sPattern = '/^[a-z]{2,3}(?:(?:[_-][a-z]{2})?(?:[_-][a-z0-9]{2,4})?)$/siU';
 | 
  
    | 116 | 		// validate language codes
 | 
  
    | 117 | 		if(preg_match($sPattern, $this->sSystemLanguage) &&
 | 
  
    | 118 | 		   preg_match($sPattern, $this->sDefaultLanguage) &&
 | 
  
    | 119 | 		   preg_match($sPattern, $this->sUserLanguage))
 | 
  
    | 120 | 		{
 | 
  
    | 121 | 		// load core translations and activate it
 | 
  
    | 122 | 			$oTmp = new TranslationTable('', 
 | 
  
    | 123 | 			                             $this->sSystemLanguage, 
 | 
  
    | 124 | 			                             $this->sDefaultLanguage, 
 | 
  
    | 125 | 			                             $this->sUserLanguage,
 | 
  
    | 126 | 			                             $this->bUseCache);
 | 
  
    | 127 | 			$this->aLoadedAddons['core'] = $oTmp->load($this->sAdaptor);
 | 
  
    | 128 | 			$this->aActiveTranslations[self::TABLE_CORE] = $this->aLoadedAddons['core'];
 | 
  
    | 129 | 			if(sizeof($this->aLoadedAddons['core']) == 0) {
 | 
  
    | 130 | 			// throw an exception for missing translations
 | 
  
    | 131 | 				throw new TranslationException('missing core translations');
 | 
  
    | 132 | 			}
 | 
  
    | 133 | 		}else {
 | 
  
    | 134 | 		// throw an exception for invalid or missing language codes
 | 
  
    | 135 | 			$sMsg = 'Invalid language codes: ['.$this->sSystemLanguage.'] or ['
 | 
  
    | 136 | 			      . $this->sDefaultLanguage.'] or ['.$this->sUserLanguage.']';
 | 
  
    | 137 | 			throw new TranslationException($sMsg);
 | 
  
    | 138 | 		}
 | 
  
    | 139 | 	}
 | 
  
    | 140 | /**
 | 
  
    | 141 |  * Add new addon
 | 
  
    | 142 |  * @param string Addon descriptor (i.e. 'modules\myAddon')
 | 
  
    | 143 |  * @param string (optional)Adaptor name (default: $this->sAdaptor)
 | 
  
    | 144 |  * @return bool 
 | 
  
    | 145 |  */	
 | 
  
    | 146 | 	public function addAddon($sAddon, $sAdaptor = null)
 | 
  
    | 147 | 	{
 | 
  
    | 148 | 		if($sAdaptor) {
 | 
  
    | 149 | 			if(!class_exists('TranslateAdaptor'.$sAdaptor)) {
 | 
  
    | 150 | 				throw new TranslationException('unable to load adaptor: '.$sAdaptor);
 | 
  
    | 151 | 			}
 | 
  
    | 152 | 			$sAdaptor = 'TranslateAdaptor'.$sAdaptor;
 | 
  
    | 153 | 		}else {
 | 
  
    | 154 | 			$sAdaptor = $this->sAdaptor;
 | 
  
    | 155 | 		}
 | 
  
    | 156 | 		$sAddon = str_replace('/', '\\', $sAddon);
 | 
  
    | 157 | 		if(!(strtolower($sAddon) == 'core' || $sAddon == '' || isset($this->aLoadedAddons[$sAddon]))) {
 | 
  
    | 158 | 		// load requested addon translations if needed and possible
 | 
  
    | 159 | 			$oTmp = new TranslationTable($sAddon, 
 | 
  
    | 160 | 			                             $this->sSystemLanguage, 
 | 
  
    | 161 | 			                             $this->sDefaultLanguage, 
 | 
  
    | 162 | 			                             $this->sUserLanguage,
 | 
  
    | 163 | 			                             $this->bUseCache);
 | 
  
    | 164 | 			$this->aLoadedAddons[$sAddon] = $oTmp->load($sAdaptor);
 | 
  
    | 165 | 		}
 | 
  
    | 166 | 	}
 | 
  
    | 167 | /**
 | 
  
    | 168 |  * Activate Addon
 | 
  
    | 169 |  * @param string Addon descriptor (i.e. 'modules\myAddon')
 | 
  
    | 170 |  * @param string (optional)Adaptor name (default: $this->sAdaptor)
 | 
  
    | 171 |  */	
 | 
  
    | 172 | 	public function enableAddon($sAddon, $sAdaptor = null)
 | 
  
    | 173 | 	{
 | 
  
    | 174 | 		$sAddon = str_replace('/', '\\', $sAddon);
 | 
  
    | 175 | 		if(!(strtolower($sAddon) == 'core' || $sAddon == '')) {
 | 
  
    | 176 | 			if(!isset($this->aLoadedAddons[$sAddon])) {
 | 
  
    | 177 | 				$this->addAddon($sAddon, $sAdaptor);
 | 
  
    | 178 | 			}
 | 
  
    | 179 | 			$this->aActiveTranslations[self::TABLE_ADDON] = $this->aLoadedAddons[$sAddon];
 | 
  
    | 180 | 		}
 | 
  
    | 181 | 		
 | 
  
    | 182 | 	}
 | 
  
    | 183 | /**
 | 
  
    | 184 |  * Dissable active addon
 | 
  
    | 185 |  */	
 | 
  
    | 186 | 	public function disableAddon()
 | 
  
    | 187 | 	{
 | 
  
    | 188 | 		if(isset($this->aActiveTranslations[self::TABLE_ADDON])) {
 | 
  
    | 189 | 			unset($this->aActiveTranslations[self::TABLE_ADDON]);
 | 
  
    | 190 | 		}
 | 
  
    | 191 | 	}
 | 
  
    | 192 | /**
 | 
  
    | 193 |  * Activate additional translation table
 | 
  
    | 194 |  * @param string $sAddon    Addon descriptor (i.e. 'modules\myAddon')
 | 
  
    | 195 |  * @param int    $iPriority (default: self::FIRST_USER_DEFINED_TABLE)
 | 
  
    | 196 |  * @param string $sAdaptor  (optional)Adaptor name (default: $this->sAdaptor)
 | 
  
    | 197 |  */
 | 
  
    | 198 | 	public function enablePrivateTable($sAddon, $iPriority = self::FIRST_USER_DEFINED_TABLE, $sAdaptor = null)
 | 
  
    | 199 | 	{
 | 
  
    | 200 |         switch (($iPriority = intval($iPriority))) :
 | 
  
    | 201 |             case self::TABLE_THEME:
 | 
  
    | 202 |             case self::TABLE_TEMPLATE:
 | 
  
    | 203 |                 break;
 | 
  
    | 204 |             default:
 | 
  
    | 205 |                 $iPriority = ($iPriority < self::FIRST_USER_DEFINED_TABLE ? self::FIRST_USER_DEFINED_TABLE : $iPriority);
 | 
  
    | 206 |             // search for first free priority position
 | 
  
    | 207 |                 while (array_key_exists($iPriority, $this->aActiveTranslations)) {
 | 
  
    | 208 |                     $iPriority += self::STEP_USER_DEFINED_TABLES;
 | 
  
    | 209 |                 }
 | 
  
    | 210 |                 break;
 | 
  
    | 211 |         endswitch;
 | 
  
    | 212 |     // sanitize Addon descriptor
 | 
  
    | 213 | 		$sAddon = str_replace('/', '\\', $sAddon);
 | 
  
    | 214 | 		if(!(strtolower($sAddon) == 'core' || $sAddon == '')) {
 | 
  
    | 215 |         // if addon is not already in list then add it now
 | 
  
    | 216 | 			if(!isset($this->aLoadedAddons[$sAddon])) {
 | 
  
    | 217 | 				$this->addAddon($sAddon, $sAdaptor);
 | 
  
    | 218 | 			}
 | 
  
    | 219 |             // copy table into activate list
 | 
  
    | 220 | 			$this->aActiveTranslations[$iPriority] = $this->aLoadedAddons[$sAddon];
 | 
  
    | 221 |             // save dependency of addon<->priority
 | 
  
    | 222 |             $this->aPrivatePriorities[$sAddon] = $iPriority;
 | 
  
    | 223 |             // sort active list ascending by priority
 | 
  
    | 224 |             ksort($this->aActiveTranslations);
 | 
  
    | 225 | 		}
 | 
  
    | 226 | 
 | 
  
    | 227 | 	}
 | 
  
    | 228 | /**
 | 
  
    | 229 |  * Remove private table from ActiveTranslations table
 | 
  
    | 230 |  * @param string $sAddon    Addon descriptor (i.e. 'modules\myAddon')
 | 
  
    | 231 |  */
 | 
  
    | 232 | 	public function disablePrivateTable($sAddon)
 | 
  
    | 233 |     {
 | 
  
    | 234 |     // sanitize addon descriptor
 | 
  
    | 235 | 		$sAddon = str_replace('/', '\\', $sAddon);
 | 
  
    | 236 |         if (isset($this->aPrivatePriorities[$sAddon])) {
 | 
  
    | 237 |         // get priority for this addon if it's loaded
 | 
  
    | 238 |             $iPriority = $this->aPrivatePriorities[$sAddon];
 | 
  
    | 239 |         // check if addon is activated
 | 
  
    | 240 |             if (isset($this->aActiveTranslations[$iPriority]) && $iPriority >= self::FIRST_USER_DEFINED_TABLE) {
 | 
  
    | 241 |             // deactivate addon and remove it from priority list
 | 
  
    | 242 |                 unset($this->aActiveTranslations[$iPriority]);
 | 
  
    | 243 |                 unset($this->aPrivatePriorities[$sAddon]);
 | 
  
    | 244 |             // sort active translation list for ascending priority
 | 
  
    | 245 |                 ksort($this->aActiveTranslations);
 | 
  
    | 246 |             }
 | 
  
    | 247 |         }
 | 
  
    | 248 |     }
 | 
  
    | 249 | /**
 | 
  
    | 250 |  * Is key available
 | 
  
    | 251 |  * @param string Language key
 | 
  
    | 252 |  * @return bool
 | 
  
    | 253 |  */
 | 
  
    | 254 | 	public function __isset($sKey)
 | 
  
    | 255 | 	{
 | 
  
    | 256 | 		foreach($this->aActiveTranslations as $oAddon) {
 | 
  
    | 257 | 			if(isset($oAddon->$sKey)) {
 | 
  
    | 258 | 			// is true if at least one translation is found
 | 
  
    | 259 | 				return true;
 | 
  
    | 260 | 			}
 | 
  
    | 261 | 		}
 | 
  
    | 262 | 		return false;
 | 
  
    | 263 | 	}
 | 
  
    | 264 | /**
 | 
  
    | 265 |  * Get translation text
 | 
  
    | 266 |  * @param string Language key
 | 
  
    | 267 |  * @return string Translation text
 | 
  
    | 268 |  */	
 | 
  
    | 269 | 	public function __get($sKey)
 | 
  
    | 270 | 	{
 | 
  
    | 271 | 		$sRetval = ($this->bRemoveMissing ? '' : '#'.$sKey.'#');
 | 
  
    | 272 | 		foreach($this->aActiveTranslations as $oAddon) {
 | 
  
    | 273 | 			if(isset($oAddon->$sKey)) {
 | 
  
    | 274 | 			// search the last matching translation (Core -> Addon)
 | 
  
    | 275 | 				$sRetval = $oAddon->$sKey;
 | 
  
    | 276 | 			}
 | 
  
    | 277 | 		}
 | 
  
    | 278 | 		return $sRetval;
 | 
  
    | 279 | 	}
 | 
  
    | 280 | /**
 | 
  
    | 281 |  * Protect class from property injections
 | 
  
    | 282 |  * @param string name of property
 | 
  
    | 283 |  * @param mixed value
 | 
  
    | 284 |  * @throws TranslationException
 | 
  
    | 285 |  */	
 | 
  
    | 286 | 	public function __set($name, $value) {
 | 
  
    | 287 | 		throw new TranslationException('tried to set a readonly or nonexisting property ['.$name.']!! ');
 | 
  
    | 288 | 	}
 | 
  
    | 289 | /**
 | 
  
    | 290 |  * Get translation text with replaced placeholders
 | 
  
    | 291 |  * @param type $sKey
 | 
  
    | 292 |  * @param type $aArguments
 | 
  
    | 293 |  * @return type
 | 
  
    | 294 |  */
 | 
  
    | 295 |     public function __call($sKey, $aArguments)
 | 
  
    | 296 |     {
 | 
  
    | 297 | 		$sRetval = '';
 | 
  
    | 298 | 		foreach($this->aActiveTranslations as $oAddon) {
 | 
  
    | 299 | 			if(isset($oAddon->$sKey)) {
 | 
  
    | 300 | 			// search the last matching translation (Core -> Addon)
 | 
  
    | 301 | 				$sRetval = $oAddon->$sKey;
 | 
  
    | 302 | 			}
 | 
  
    | 303 | 		}
 | 
  
    | 304 | 		if(sizeof($aArguments) > 0 && $sRetval != '') {
 | 
  
    | 305 | 			foreach($aArguments as $iKey=>$sArgument) {
 | 
  
    | 306 | 				if(is_string($sArgument)) {
 | 
  
    | 307 | 					$sRetval = preg_replace('/\{'.$iKey.'\}/', $sArgument, $sRetval);
 | 
  
    | 308 | 				}
 | 
  
    | 309 | 			}
 | 
  
    | 310 | 		}
 | 
  
    | 311 | 		return ($sRetval != '' ? $sRetval : ($this->bRemoveMissing ? '' : '#'.$sKey.'#'));
 | 
  
    | 312 |     }
 | 
  
    | 313 | 
 | 
  
    | 314 | /**
 | 
  
    | 315 |  * Return complete table of translations
 | 
  
    | 316 |  * @return array
 | 
  
    | 317 |  * @deprecated for backward compatibility only. Will be removed shortly
 | 
  
    | 318 |  */	
 | 
  
    | 319 | 	public function getLangArray()
 | 
  
    | 320 | 	{
 | 
  
    | 321 | 		$aSumTranslations = array();
 | 
  
    | 322 | 		foreach($this->aActiveTranslations as $oTranslationTable) {
 | 
  
    | 323 | 			if(get_class($oTranslationTable) == 'TranslationTable') {
 | 
  
    | 324 | 				$aSumTranslations = array_merge($aSumTranslations, $oTranslationTable->getArray());
 | 
  
    | 325 | 			}
 | 
  
    | 326 | 		}
 | 
  
    | 327 | 		return $aSumTranslations;
 | 
  
    | 328 | 	}
 | 
  
    | 329 | 	
 | 
  
    | 330 | } // end of class Translate
 | 
  
    | 331 | // //////////////////////////////////////////////////////////////////////////////////// //
 | 
  
    | 332 | /**
 | 
  
    | 333 |  * TranslationException
 | 
  
    | 334 |  *
 | 
  
    | 335 |  * @category     Core
 | 
  
    | 336 |  * @package      Core_Translation
 | 
  
    | 337 |  * @author       Werner v.d.Decken <wkl@isteam.de>
 | 
  
    | 338 |  * @copyright    Werner v.d.Decken <wkl@isteam.de>
 | 
  
    | 339 |  * @license      http://www.gnu.org/licenses/gpl.html   GPL License
 | 
  
    | 340 |  * @version      2.9.0
 | 
  
    | 341 |  * @revision     $Revision: 2096 $
 | 
  
    | 342 |  * @lastmodified $Date: 2014-02-03 13:08:39 +0100 (Mon, 03 Feb 2014) $
 | 
  
    | 343 |  * @description  Exceptionhandler for the Translation class and depending classes
 | 
  
    | 344 |  */
 | 
  
    | 345 | class TranslationException extends AppException {}
 |