/install-dev/upgrade/php/migrate_block_info_to_cms_block.php
https://gitlab.com/jslee1/PrestaShop · PHP · 133 lines · 86 code · 11 blank · 36 comment · 8 complexity · 154b377f6eae8e1f6211c2a8572ae749 MD5 · raw file
- <?php
- /**
- * 2007-2015 PrestaShop
- *
- * 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.txt.
- * It is also available through the world-wide-web at this URL:
- * http://opensource.org/licenses/osl-3.0.php
- * 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 http://www.prestashop.com for more information.
- *
- * @author PrestaShop SA <contact@prestashop.com>
- * @copyright 2007-2015 PrestaShop SA
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * International Registered Trademark & Property of PrestaShop SA
- */
- function migrate_block_info_to_cms_block()
- {
- $res = true;
- $languages = Db::getInstance()->executeS('SELECT * FROM `'._DB_PREFIX_.'lang`');
- //get ids cms of block information
- $id_blockinfos = Db::getInstance()->getValue('SELECT id_module FROM `'._DB_PREFIX_.'module` WHERE name = \'blockinfos\'');
- //get ids cms of block information
- $ids_cms = Db::getInstance()->executeS('SELECT id_cms FROM `'._DB_PREFIX_.'block_cms` WHERE `id_block` = '.(int)$id_blockinfos);
- //check if block info is installed and active
- if (is_array($ids_cms)) {
- //install module blockcms
- // Module::getInstanceByName('blockcms')->install()
- // 1) from module
- $ps_lang_default = Db::getInstance()->getValue('SELECT value
- FROM `'._DB_PREFIX_.'configuration`
- WHERE name="PS_LANG_DEFAULT"');
- // 2) parent::install()
- $result = Db::getInstance()->insert('module',
- array('name' => 'blockcms', 'active' => 1));
- $id_module = Db::getInstance()->insert_Id();
- // 3) hooks
- $hooks = array('leftColumn', 'rightColumn', 'footer', 'header');
- foreach ($hooks as $hook_name) {
- // do not pSql hook_name
- $row = Db::getInstance()->getRow('SELECT h.id_hook, '.$id_module.' as id_module, MAX(hm.position)+1 as position
- FROM `'._DB_PREFIX_.'hook_module` hm
- LEFT JOIN `'._DB_PREFIX_.'hook` h on hm.id_hook=h.id_hook
- WHERE h.name = "'.$hook_name.'" group by id_hook');
- $res &= Db::getInstance()->insert('hook_module', $row);
- }
- // module install
- $res &= Db::getInstance()->execute('
- CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'cms_block`(
- `id_cms_block` int(10) unsigned NOT NULL auto_increment,
- `id_cms_category` int(10) unsigned NOT NULL,
- `location` tinyint(1) unsigned NOT NULL,
- `position` int(10) unsigned NOT NULL default \'0\',
- `display_store` tinyint(1) unsigned NOT NULL default \'1\',
- PRIMARY KEY (`id_cms_block`)
- ) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8');
- $res &= Db::getInstance()->execute('
- INSERT INTO `'._DB_PREFIX_.'cms_block` (`id_cms_category`, `location`, `position`) VALUES(1, 0, 0)');
- $res &= Db::getInstance()->execute('
- CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'cms_block_lang`(
- `id_cms_block` int(10) unsigned NOT NULL,
- `id_lang` int(10) unsigned NOT NULL,
- `name` varchar(40) NOT NULL default \'\',
- PRIMARY KEY (`id_cms_block`, `id_lang`)
- ) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8');
- $query_lang = 'INSERT INTO `'._DB_PREFIX_.'cms_block_lang` (`id_cms_block`, `id_lang`) VALUES';
- foreach ($languages as $language) {
- $query_lang .= '(1, '.(int)($language['id_lang']).'),';
- }
- $query_lang = rtrim($query_lang, ',');
- $res &= Db::getInstance()->execute($query_lang);
- $res &= Db::getInstance()->execute('
- CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'cms_block_page`(
- `id_cms_block_page` int(10) unsigned NOT NULL auto_increment,
- `id_cms_block` int(10) unsigned NOT NULL,
- `id_cms` int(10) unsigned NOT NULL,
- `is_category` tinyint(1) unsigned NOT NULL,
- PRIMARY KEY (`id_cms_block_page`)
- ) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8');
- $exist = Db::getInstance()->getValue('SELECT `id_configuration` FROM `'._DB_PREFIX_.'configuration` WHERE `name` = \'FOOTER_CMS\'');
- if ($exist) {
- $res &= Db::getInstance()->execute('UPDATE `'._DB_PREFIX_.'configuration` SET value = "" WHERE `name` = \'FOOTER_CMS\'');
- } else {
- $res &= Db::getInstance()->getValue('INSERT INTO `'._DB_PREFIX_.'configuration` (name, value) VALUES ("FOOTER_CMS", "")');
- }
- $exist = Db::getInstance()->getValue('SELECT `id_configuration` FROM `'._DB_PREFIX_.'configuration` WHERE `name` = \'FOOTER_BLOCK_ACTIVATION\'');
- if ($exist) {
- $res &= Db::getInstance()->execute('UPDATE `'._DB_PREFIX_.'configuration` SET value = "1" WHERE `name` = \'FOOTER_BLOCK_ACTIVATION\'');
- } else {
- $res &= Db::getInstance()->getValue('INSERT INTO `'._DB_PREFIX_.'configuration` (name, value) VALUES ("FOOTER_BLOCK_ACTIVATION", "1")');
- }
- $exist = Db::getInstance()->getValue('SELECT `id_configuration` FROM `'._DB_PREFIX_.'configuration` WHERE `name` = \'FOOTER_POWEREDBY\'');
- if ($exist) {
- $res &= Db::getInstance()->execute('UPDATE `'._DB_PREFIX_.'configuration` SET value = "1" WHERE `name` = \'FOOTER_POWEREDBY\'');
- } else {
- $res &= Db::getInstance()->getValue('INSERT INTO `'._DB_PREFIX_.'configuration` (name, value) VALUES ("FOOTER_POWEREDBY", "1")');
- }
- //add new block in new cms block
- $res &= Db::getInstance()->execute('INSERT INTO `'._DB_PREFIX_.'cms_block`
- (`id_cms_category`, `name`, `location`, `position`)
- VALUES( 1, "", 0, 0)');
- $id_block = Db::getInstance()->insert_id();
- foreach ($languages as $language) {
- Db::getInstance()->execute('INSERT INTO `'._DB_PREFIX_.'cms_block_lang` (`id_cms_block`, `id_lang`, `name`) VALUES ('.(int)$id_block.', '.(int)$language['id_lang'].', \'Information\')');
- }
- //save ids cms of block information in new module cms bloc
- foreach ($ids_cms as $id_cms) {
- Db::getInstance()->execute('INSERT INTO `'._DB_PREFIX_.'cms_block_page` (`id_cms_block`, `id_cms`, `is_category`) VALUES ('.(int)$id_block.', '.(int)$id_cms['id_cms'].', 0)');
- }
- } else {
- return true;
- }
- }