| Server IP : 138.197.176.125 / Your IP : 216.73.216.41 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/jetcounter/Zend/ |
Upload File : |
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Translate
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @version $Id: Date.php 2498 2006-12-23 22:13:38Z thomas $
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
/**
* @see Zend_Loader
*/
require_once 'Zend/Loader.php';
/**
* @category Zend
* @package Zend_Translate
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Translate {
/**
* Adapter names constants
*/
const AN_ARRAY = 'array';
const AN_CSV = 'csv';
const AN_GETTEXT = 'gettext';
const AN_INI = 'ini';
const AN_QT = 'qt';
const AN_TBX = 'tbx';
const AN_TMX = 'tmx';
const AN_XLIFF = 'xliff';
const AN_XMLTM = 'xmltm';
const LOCALE_DIRECTORY = 1;
const LOCALE_FILENAME = 2;
/**
* Adapter
*
* @var Zend_Translate_Adapter
*/
private $_adapter;
private static $_cache = null;
/**
* Generates the standard translation object
*
* @param string $adapter Adapter to use
* @param array $data Translation source data for the adapter
* Depends on the Adapter
* @param string|Zend_Locale $locale OPTIONAL locale to use
* @param array $options OPTIONAL options for the adapter
* @throws Zend_Translate_Exception
*/
public function __construct($adapter, $data, $locale = null, array $options = array())
{
$this->setAdapter($adapter, $data, $locale, $options);
}
/**
* Sets a new adapter
*
* @param string $adapter Adapter to use
* @param string|array $data Translation data
* @param string|Zend_Locale $locale OPTIONAL locale to use
* @param array $options OPTIONAL Options to use
* @throws Zend_Translate_Exception
*/
public function setAdapter($adapter, $data, $locale = null, array $options = array())
{
switch (strtolower($adapter)) {
case 'array':
$adapter = 'Zend_Translate_Adapter_Array';
break;
case 'csv':
$adapter = 'Zend_Translate_Adapter_Csv';
break;
case 'gettext':
$adapter = 'Zend_Translate_Adapter_Gettext';
break;
case 'ini':
$adapter = 'Zend_Translate_Adapter_Ini';
break;
case 'qt':
$adapter = 'Zend_Translate_Adapter_Qt';
break;
case 'tbx':
$adapter = 'Zend_Translate_Adapter_Tbx';
break;
case 'tmx':
$adapter = 'Zend_Translate_Adapter_Tmx';
break;
case 'xliff':
$adapter = 'Zend_Translate_Adapter_Xliff';
break;
case 'xmltm':
$adapter = 'Zend_Translate_Adapter_XmlTm';
break;
}
Zend_Loader::loadClass($adapter);
if (self::$_cache !== null) {
call_user_func(array($adapter, 'setCache'), self::$_cache);
}
$this->_adapter = new $adapter($data, $locale, $options);
if (!$this->_adapter instanceof Zend_Translate_Adapter) {
require_once 'Zend/Translate/Exception.php';
throw new Zend_Translate_Exception("Adapter " . $adapter . " does not extend Zend_Translate_Adapter'");
}
}
/**
* Returns the adapters name and it's options
*
* @return Zend_Translate_Adapter
*/
public function getAdapter()
{
return $this->_adapter;
}
/**
* Sets a cache for all instances of Zend_Translate
*
* @param Zend_Cache_Core $cache Cache to store to
* @return void
*/
public static function setCache(Zend_Cache_Core $cache)
{
self::$_cache = $cache;
}
/**
* Returns the set cache
*
* @return Zend_Cache_Core The set cache
*/
public static function getCache()
{
return self::$_cache;
}
/**
* Calls all methods from the adapter
*/
public function __call($method, array $options)
{
if (method_exists($this->_adapter, $method)) {
return call_user_func_array(array($this->_adapter, $method), $options);
}
require_once 'Zend/Translate/Exception.php';
throw new Zend_Translate_Exception("Unknown method '" . $method . "' called!");
}
}