* @copyright 2007-2012 PrestaShop SA * @version Release: $Revision$ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * @since 1.5.0 */ class TranslateCore { /** * Get a translation for an admin controller * * @param $string * @param string $class * @param bool $addslashes * @param bool $htmlentities * @return string */ public static function getAdminTranslation($string, $class = 'AdminTab', $addslashes = false, $htmlentities = true, $sprintf = false) { static $modules_tabs = null; // @todo remove global keyword in translations files and use static global $_LANGADM; if (!isset($modules_tabs)) $modules_tabs = Tab::getModuleTabList(); if ($_LANGADM == null) { $iso = Context::getContext()->language->iso_code; include_once(_PS_TRANSLATIONS_DIR_.$iso.'/admin.php'); } if (isset($modules_tabs[strtolower($class)])) { $class_name_controller = $class.'controller'; // if the class is extended by a module, use modules/[module_name]/xx.php lang file if (class_exists($class_name_controller) && Module::getModuleNameFromClass($class_name_controller)) { $string = str_replace('\'', '\\\'', $string); return Translate::getModuleTranslation(Module::$classInModule[$class_name_controller], $string, $class); } } $key = md5(str_replace('\'', '\\\'', $string)); if (isset($_LANGADM[$class.$key])) $str = $_LANGADM[$class.$key]; else $str = Translate::getGenericAdminTranslation($string, $key, $_LANGADM); $str = $htmlentities ? htmlentities($str, ENT_QUOTES, 'utf-8') : $str; if ($sprintf) { if (!is_array($sprintf)) $sprintf = array($sprintf); $str = vsprintf($str, $sprintf); } return str_replace('"', '"', ($addslashes ? addslashes($str) : stripslashes($str))); } /** * Return the translation for a string if it exists for the base AdminController or for helpers * * @static * @param $string string to translate * @param null $key md5 key if already calculated (optional) * @param $lang_array global array of admin translations * @return string translation */ public static function getGenericAdminTranslation($string, $key = null, $lang_array) { if (is_null($key)) $key = md5(str_replace('\'', '\\\'', $string)); if (isset($lang_array['AdminController'.$key])) $str = $lang_array['AdminController'.$key]; else if (isset($lang_array['Helper'.$key])) $str = $lang_array['Helper'.$key]; else if (isset($lang_array['AdminTab'.$key])) $str = $lang_array['AdminTab'.$key]; else // note in 1.5, some translations has moved from AdminXX to helper/*.tpl $str = $string; return $str; } /** * Get a translation for a module * * @param string|Module $module * @param string $string * @param string $source * @return string */ public static function getModuleTranslation($module, $string, $source) { global $_MODULES, $_MODULE, $_LANGADM; static $lang_cache = array(); // $_MODULES is a cache of translations for all module. // $translations_merged is a cache of wether a specific module's translations have already been added to $_MODULES static $translations_merged = array(); if ($module instanceof Module) { $name = $module->name; $local_path = $module->getLocalPath(); } else { $name = $module; $local_path = _PS_MODULE_DIR_.$module.'/'; } // @retrocompatibility with translations files in module root // @since 1.5 modules have a translations/ folder if (Tools::file_exists_cache($local_path.'/translations/'.Context::getContext()->language->iso_code.'.php')) $file = $local_path.'/translations/'.Context::getContext()->language->iso_code.'.php'; else $file = $local_path.'/'.Context::getContext()->language->iso_code.'.php'; // Load translations file if it has not been already done if (!isset($translations_merged[md5($file)]) && Tools::file_exists_cache($file) && include_once($file)) { $_MODULES = !empty($_MODULES) ? array_merge($_MODULES, $_MODULE) : $_MODULE; $translations_merged[md5($file)] = true; } $key = md5(str_replace('\'', '\\\'', $string)); $cache_key = $name.'|'.$string.'|'.$source; if (!isset($lang_cache[$cache_key])) { if ($_MODULES == null) return str_replace('"', '"', $string); $currentKey = strtolower('<{'.$name.'}'._THEME_NAME_.'>'.$source).'_'.$key; $defaultKey = strtolower('<{'.$name.'}prestashop>'.$source).'_'.$key; if (isset($_MODULES[$currentKey])) $ret = stripslashes($_MODULES[$currentKey]); elseif (isset($_MODULES[$defaultKey])) $ret = stripslashes($_MODULES[$defaultKey]); // if translation was not found in module, look for it in AdminController or Helpers elseif (!empty($_LANGADM)) $ret = Translate::getGenericAdminTranslation($string, $key, $_LANGADM); else $ret = stripslashes($string); $lang_cache[$cache_key] = str_replace('"', '"', $ret); } return $lang_cache[$cache_key]; } /** * Get a translation for a PDF * * @param string $string * @return string */ public static function getPdfTranslation($string) { global $_LANGPDF; $iso = Context::getContext()->language->iso_code; if (!Validate::isLangIsoCode($iso)) Tools::displayError(sprintf('Invalid iso lang (%s)', Tools::safeOutput($iso))); $override_i18n_file = _PS_THEME_DIR_.'pdf/lang/'.$iso.'.php'; $i18n_file = _PS_TRANSLATIONS_DIR_.$iso.'/pdf.php'; if (file_exists($override_i18n_file)) $i18n_file = $override_i18n_file; if (!include($i18n_file)) Tools::displayError(sprintf('Cannot include PDF translation language file : %s', $i18n_file)); if (!isset($_LANGPDF) || !is_array($_LANGPDF)) return str_replace('"', '"', $string); $key = md5(str_replace('\'', '\\\'', $string)); $str = (key_exists('PDF'.$key, $_LANGPDF) ? $_LANGPDF['PDF'.$key] : $string); return $str; } }