91 lines
3.3 KiB
PHP
91 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Copyright since 2007 PrestaShop SA and Contributors
|
|
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.md.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/OSL-3.0
|
|
* 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@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
|
*
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
|
*/
|
|
|
|
function cms_multishop()
|
|
{
|
|
$shops = Db::getInstance()->executeS('
|
|
SELECT `id_shop`
|
|
FROM `'._DB_PREFIX_.'shop`
|
|
');
|
|
|
|
$cms_lang = Db::getInstance()->executeS('
|
|
SELECT *
|
|
FROM `'._DB_PREFIX_.'cms_lang`
|
|
');
|
|
foreach ($cms_lang as $value) {
|
|
$data = array();
|
|
$cms = array(
|
|
'id_cms' => $value['id_cms'],
|
|
'id_lang' => $value['id_lang'],
|
|
'content' => pSQL($value['content'], true),
|
|
'link_rewrite' => pSQL($value['link_rewrite']),
|
|
'meta_title' => pSQL($value['meta_title']),
|
|
'meta_keywords' => pSQL($value['meta_keywords']),
|
|
'meta_description' => pSQL($value['meta_description']),
|
|
);
|
|
foreach ($shops as $shop) {
|
|
if ($shop['id_shop'] != 1) {
|
|
$cms['id_shop'] = $shop['id_shop'];
|
|
$data[] = $cms;
|
|
}
|
|
}
|
|
Db::getInstance()->insert('cms_lang', $data);
|
|
}
|
|
|
|
$cms_category_lang = Db::getInstance()->executeS('
|
|
SELECT *
|
|
FROM `'._DB_PREFIX_.'cms_category_lang`
|
|
');
|
|
foreach ($cms_category_lang as $value) {
|
|
$data = array();
|
|
$data_bis = array();
|
|
|
|
$cms_category_shop = array(
|
|
'id_cms_category' => $value['id_cms_category'],
|
|
);
|
|
$cms_category = array(
|
|
'id_cms_category' => $value['id_cms_category'],
|
|
'id_lang' => $value['id_lang'],
|
|
'name' => pSQL($value['name']),
|
|
'description' => pSQL($value['description']),
|
|
'link_rewrite' => pSQL($value['link_rewrite']),
|
|
'meta_title' => pSQL($value['meta_title']),
|
|
'meta_keywords' => pSQL($value['meta_keywords']),
|
|
'meta_description' => pSQL($value['meta_description']),
|
|
);
|
|
foreach ($shops as $shop) {
|
|
if ($shop['id_shop'] != 1) {
|
|
$cms_category['id_shop'] = $shop['id_shop'];
|
|
$data[] = $cms_category;
|
|
}
|
|
$cms_category_shop['id_shop'] = $shop['id_shop'];
|
|
$data_bis[] = $cms_category_shop;
|
|
}
|
|
Db::getInstance()->insert('cms_category_lang', $data, false, true, Db::INSERT_IGNORE);
|
|
Db::getInstance()->insert('cms_category_shop', $data_bis, false, true, Db::INSERT_IGNORE);
|
|
}
|
|
}
|