[*] Installer : add new function for move the translation module files

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14998 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2012-05-02 12:56:09 +00:00
parent 0c2a5f508b
commit 807468071a
2 changed files with 39 additions and 1 deletions
@@ -0,0 +1,38 @@
<?php
/**
* Move all translation modules files 1.4 for a good architecture in 1.5
*/
function moveTranslationsModuleFile()
{
// Get all languages
$languages = Db::getInstance()->executeS('
SELECT *
FROM `'._DB_PREFIX_.'lang`
');
// Get the list of modules
$modules = scandir(_PS_MODULE_DIR_);
// Scan all modules and check if translation file exists
foreach ($modules as $module_name)
foreach ($languages as $lang)
{
// Check if is a good module
if (!in_array($module_name, array('.', '..', '.svn', '.htaccess', 'index.php')))
{
// Name for the old file and the new file
$old_file = _PS_MODULE_DIR_.$module_name.'/'.$lang['iso_code'].'.php';
$dir_translations = _PS_MODULE_DIR_.$module_name.'/translations/';
$new_file = $dir_translations.$lang['iso_code'].'.php';
// Create folder if no exist
if (!is_dir($dir_translations))
mkdir($dir_translations, 0777);
if (file_exists($old_file))
if (copy($old_file, $new_file))
unlink($old_file);
}
}
}