first commit
This commit is contained in:
76
modules/ps_customtext/classes/CustomText.php
Normal file
76
modules/ps_customtext/classes/CustomText.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<?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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*/
|
||||
class CustomText extends ObjectModel
|
||||
{
|
||||
/**
|
||||
* Identifier of CustomText
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $id_info;
|
||||
|
||||
/**
|
||||
* HTML format of CustomText values
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $text;
|
||||
|
||||
/**
|
||||
* @see ObjectModel::$definition
|
||||
*/
|
||||
public static $definition = [
|
||||
'table' => 'info',
|
||||
'primary' => 'id_info',
|
||||
'multilang' => true,
|
||||
'multilang_shop' => true,
|
||||
'fields' => [
|
||||
'id_info' => ['type' => self::TYPE_NOTHING, 'validate' => 'isUnsignedId'],
|
||||
// Lang fields
|
||||
'text' => ['type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml', 'required' => true],
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
* Return the CustomText ID By shop ID
|
||||
*
|
||||
* @param int $shopId
|
||||
*
|
||||
* @return bool|int
|
||||
*/
|
||||
public static function getCustomTextIdByShop($shopId)
|
||||
{
|
||||
$sql = 'SELECT i.`id_info` FROM `' . _DB_PREFIX_ . 'info` i
|
||||
LEFT JOIN `' . _DB_PREFIX_ . 'info_shop` ish ON ish.`id_info` = i.`id_info`
|
||||
WHERE ish.`id_shop` = ' . (int) $shopId;
|
||||
|
||||
if ($result = Db::getInstance()->executeS($sql)) {
|
||||
return (int) reset($result)['id_info'];
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
87
modules/ps_customtext/classes/MigrateData.php
Normal file
87
modules/ps_customtext/classes/MigrateData.php
Normal file
@@ -0,0 +1,87 @@
|
||||
<?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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*/
|
||||
|
||||
/**
|
||||
* Database may change between two version of the module, or between the 1.6 and 1.7 modules.
|
||||
* This class allow the data to be kept during upgrades and migrations.
|
||||
*/
|
||||
class MigrateData
|
||||
{
|
||||
private $loadedData = [];
|
||||
|
||||
/**
|
||||
* This methods retrieves data from older database models
|
||||
* - ps_customtext < v3.0.0
|
||||
* - blockcmsinfo (1.6 equivalent module)
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function retrieveOldData()
|
||||
{
|
||||
$this->loadedData = [];
|
||||
$texts = Db::getInstance()->executeS('SELECT i.`id_shop`, il.`id_lang`, il.`text` FROM `' . _DB_PREFIX_ . 'info` i
|
||||
INNER JOIN `' . _DB_PREFIX_ . 'info_lang` il ON il.`id_info` = i.`id_info`'
|
||||
);
|
||||
|
||||
if (is_array($texts) && !empty($texts)) {
|
||||
foreach ($texts as $text) {
|
||||
$this->loadedData[(int) $text['id_shop']][(int) $text['id_lang']] = $text['text'];
|
||||
}
|
||||
}
|
||||
|
||||
return $this->loadedData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Import the old CustomText data in the new structure
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function insertData()
|
||||
{
|
||||
if (empty($this->loadedData)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$return = true;
|
||||
$shopsIds = Shop::getShops(true, null, true);
|
||||
$customTexts = array_intersect_key($this->loadedData, $shopsIds);
|
||||
|
||||
$info = new CustomText();
|
||||
$info->text = reset($customTexts);
|
||||
$return &= $info->add();
|
||||
|
||||
if (count($customTexts) > 1) {
|
||||
foreach ($customTexts as $key => $text) {
|
||||
Shop::setContext(Shop::CONTEXT_SHOP, (int) $key);
|
||||
$info->text = $text;
|
||||
$return &= $info->save();
|
||||
}
|
||||
}
|
||||
|
||||
return (bool) $return;
|
||||
}
|
||||
}
|
||||
1929
modules/ps_customtext/composer.lock
generated
Normal file
1929
modules/ps_customtext/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
11
modules/ps_customtext/config.xml
Normal file
11
modules/ps_customtext/config.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>ps_customtext</name>
|
||||
<displayName><![CDATA[Custom text]]></displayName>
|
||||
<version><![CDATA[4.1.1]]></version>
|
||||
<description><![CDATA[Adds custom information block in your store.]]></description>
|
||||
<author><![CDATA[PrestaShop]]></author>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>0</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
12
modules/ps_customtext/config_pl.xml
Normal file
12
modules/ps_customtext/config_pl.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>ps_customtext</name>
|
||||
<displayName><![CDATA[Niestandardowe bloki tekstu]]></displayName>
|
||||
<version><![CDATA[4.1.1]]></version>
|
||||
<description><![CDATA[Zintegrowane bloki tekstu własnego w dowolnym miejscu w Twoim sklepie]]></description>
|
||||
<author><![CDATA[PrestaShop]]></author>
|
||||
<tab><![CDATA[]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>0</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
34
modules/ps_customtext/index.php
Normal file
34
modules/ps_customtext/index.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*/
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../../');
|
||||
exit;
|
||||
BIN
modules/ps_customtext/logo.png
Normal file
BIN
modules/ps_customtext/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
346
modules/ps_customtext/ps_customtext.php
Normal file
346
modules/ps_customtext/ps_customtext.php
Normal file
@@ -0,0 +1,346 @@
|
||||
<?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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*/
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
use PrestaShop\PrestaShop\Core\Module\WidgetInterface;
|
||||
|
||||
require_once _PS_MODULE_DIR_ . 'ps_customtext/classes/CustomText.php';
|
||||
|
||||
class Ps_Customtext extends Module implements WidgetInterface
|
||||
{
|
||||
// Equivalent module on PrestaShop 1.6, sharing the same data
|
||||
const MODULE_16 = 'blockcmsinfo';
|
||||
|
||||
private $templateFile;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->name = 'ps_customtext';
|
||||
$this->author = 'PrestaShop';
|
||||
$this->version = '4.1.1';
|
||||
$this->need_instance = 0;
|
||||
|
||||
$this->bootstrap = true;
|
||||
parent::__construct();
|
||||
|
||||
Shop::addTableAssociation('info', ['type' => 'shop']);
|
||||
|
||||
$this->displayName = $this->trans('Custom text blocks', [], 'Modules.Customtext.Admin');
|
||||
$this->description = $this->trans('Integrates custom text blocks anywhere in your store front', [], 'Modules.Customtext.Admin');
|
||||
|
||||
$this->ps_versions_compliancy = ['min' => '1.7.4.0', 'max' => _PS_VERSION_];
|
||||
|
||||
$this->templateFile = 'module:ps_customtext/ps_customtext.tpl';
|
||||
}
|
||||
|
||||
public function install()
|
||||
{
|
||||
// Remove 1.6 equivalent module to avoid DB issues
|
||||
if (Module::isInstalled(self::MODULE_16)) {
|
||||
return $this->installFrom16Version();
|
||||
}
|
||||
|
||||
return $this->runInstallSteps()
|
||||
&& $this->installFixtures();
|
||||
}
|
||||
|
||||
public function runInstallSteps()
|
||||
{
|
||||
return parent::install()
|
||||
&& $this->installDB()
|
||||
&& $this->registerHook('displayHome')
|
||||
&& $this->registerHook('actionShopDataDuplication');
|
||||
}
|
||||
|
||||
public function installFrom16Version()
|
||||
{
|
||||
require_once _PS_MODULE_DIR_ . $this->name . '/classes/MigrateData.php';
|
||||
$migration = new MigrateData();
|
||||
$migration->retrieveOldData();
|
||||
|
||||
$oldModule = Module::getInstanceByName(self::MODULE_16);
|
||||
if ($oldModule) {
|
||||
$oldModule->uninstall();
|
||||
}
|
||||
|
||||
return $this->uninstallDB()
|
||||
&& $this->runInstallSteps()
|
||||
&& $migration->insertData();
|
||||
}
|
||||
|
||||
public function uninstall()
|
||||
{
|
||||
return parent::uninstall() && $this->uninstallDB();
|
||||
}
|
||||
|
||||
public function installDB()
|
||||
{
|
||||
$return = true;
|
||||
$return &= Db::getInstance()->execute('
|
||||
CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'info` (
|
||||
`id_info` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
PRIMARY KEY (`id_info`)
|
||||
) ENGINE=' . _MYSQL_ENGINE_ . ' DEFAULT CHARSET=utf8 ;'
|
||||
);
|
||||
|
||||
$return &= Db::getInstance()->execute('
|
||||
CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'info_shop` (
|
||||
`id_info` INT(10) UNSIGNED NOT NULL,
|
||||
`id_shop` INT(10) UNSIGNED NOT NULL,
|
||||
PRIMARY KEY (`id_info`, `id_shop`)
|
||||
) ENGINE=' . _MYSQL_ENGINE_ . ' DEFAULT CHARSET=utf8 ;'
|
||||
);
|
||||
|
||||
$return &= Db::getInstance()->execute('
|
||||
CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'info_lang` (
|
||||
`id_info` INT UNSIGNED NOT NULL,
|
||||
`id_shop` INT(10) UNSIGNED NOT NULL,
|
||||
`id_lang` INT(10) UNSIGNED NOT NULL ,
|
||||
`text` text NOT NULL,
|
||||
PRIMARY KEY (`id_info`, `id_lang`, `id_shop`)
|
||||
) ENGINE=' . _MYSQL_ENGINE_ . ' DEFAULT CHARSET=utf8 ;'
|
||||
);
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
public function uninstallDB($drop_table = true)
|
||||
{
|
||||
$ret = true;
|
||||
if ($drop_table) {
|
||||
$ret &= Db::getInstance()->execute('DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'info`')
|
||||
&& Db::getInstance()->execute('DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'info_shop`')
|
||||
&& Db::getInstance()->execute('DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'info_lang`');
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
public function getContent()
|
||||
{
|
||||
$output = '';
|
||||
|
||||
if (Tools::isSubmit('saveps_customtext')) {
|
||||
if (!Tools::getValue('text_' . (int) Configuration::get('PS_LANG_DEFAULT'), false)) {
|
||||
$output = $this->displayError($this->trans('Please fill out all fields.', [], 'Admin.Notifications.Error'));
|
||||
} else {
|
||||
$update = $this->processSaveCustomText();
|
||||
|
||||
if (!$update) {
|
||||
$output = '<div class="alert alert-danger conf error">'
|
||||
. $this->trans('An error occurred on saving.', [], 'Admin.Notifications.Error')
|
||||
. '</div>';
|
||||
}
|
||||
|
||||
$this->_clearCache($this->templateFile);
|
||||
}
|
||||
}
|
||||
|
||||
return $output . $this->renderForm();
|
||||
}
|
||||
|
||||
public function processSaveCustomText()
|
||||
{
|
||||
$shops = Tools::getValue('checkBoxShopAsso_configuration', [$this->context->shop->id]);
|
||||
$text = [];
|
||||
$languages = Language::getLanguages(false);
|
||||
|
||||
foreach ($languages as $lang) {
|
||||
$text[$lang['id_lang']] = (string) Tools::getValue('text_' . $lang['id_lang']);
|
||||
}
|
||||
|
||||
$saved = true;
|
||||
foreach ($shops as $shop) {
|
||||
Shop::setContext(Shop::CONTEXT_SHOP, $shop);
|
||||
$info = new CustomText(Tools::getValue('id_info', 1));
|
||||
$info->text = $text;
|
||||
$saved &= $info->save();
|
||||
}
|
||||
|
||||
return $saved;
|
||||
}
|
||||
|
||||
protected function renderForm()
|
||||
{
|
||||
$default_lang = (int) Configuration::get('PS_LANG_DEFAULT');
|
||||
|
||||
$fields_form = [
|
||||
'tinymce' => true,
|
||||
'legend' => [
|
||||
'title' => $this->trans('CMS block', [], 'Modules.Customtext.Admin'),
|
||||
],
|
||||
'input' => [
|
||||
'id_info' => [
|
||||
'type' => 'hidden',
|
||||
'name' => 'id_info',
|
||||
],
|
||||
'content' => [
|
||||
'type' => 'textarea',
|
||||
'label' => $this->trans('Text block', [], 'Modules.Customtext.Admin'),
|
||||
'lang' => true,
|
||||
'name' => 'text',
|
||||
'cols' => 40,
|
||||
'rows' => 10,
|
||||
'class' => 'rte',
|
||||
'autoload_rte' => true,
|
||||
],
|
||||
],
|
||||
'submit' => [
|
||||
'title' => $this->trans('Save', [], 'Admin.Actions'),
|
||||
],
|
||||
'buttons' => [
|
||||
[
|
||||
'href' => AdminController::$currentIndex . '&configure=' . $this->name . '&token=' . Tools::getAdminTokenLite('AdminModules'),
|
||||
'title' => $this->trans('Back to list', [], 'Admin.Actions'),
|
||||
'icon' => 'process-icon-back',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
if (Shop::isFeatureActive() && Tools::getValue('id_info') == false) {
|
||||
$fields_form['input'][] = [
|
||||
'type' => 'shop',
|
||||
'label' => $this->trans('Shop association', [], 'Admin.Global'),
|
||||
'name' => 'checkBoxShopAsso_theme',
|
||||
];
|
||||
}
|
||||
|
||||
$helper = new HelperForm();
|
||||
$helper->module = $this;
|
||||
$helper->name_controller = 'ps_customtext';
|
||||
$helper->identifier = $this->identifier;
|
||||
$helper->token = Tools::getAdminTokenLite('AdminModules');
|
||||
foreach (Language::getLanguages(false) as $lang) {
|
||||
$helper->languages[] = [
|
||||
'id_lang' => $lang['id_lang'],
|
||||
'iso_code' => $lang['iso_code'],
|
||||
'name' => $lang['name'],
|
||||
'is_default' => ($default_lang == $lang['id_lang'] ? 1 : 0),
|
||||
];
|
||||
}
|
||||
|
||||
$helper->currentIndex = AdminController::$currentIndex . '&configure=' . $this->name;
|
||||
$helper->default_form_language = $default_lang;
|
||||
$helper->allow_employee_form_lang = $default_lang;
|
||||
$helper->toolbar_scroll = true;
|
||||
$helper->title = $this->displayName;
|
||||
$helper->submit_action = 'saveps_customtext';
|
||||
|
||||
$helper->fields_value = $this->getFormValues();
|
||||
|
||||
return $helper->generateForm([['form' => $fields_form]]);
|
||||
}
|
||||
|
||||
public function getFormValues()
|
||||
{
|
||||
$fields_value = [];
|
||||
$idShop = $this->context->shop->id;
|
||||
$idInfo = CustomText::getCustomTextIdByShop($idShop);
|
||||
|
||||
Shop::setContext(Shop::CONTEXT_SHOP, $idShop);
|
||||
$info = new CustomText((int) $idInfo);
|
||||
|
||||
$fields_value['text'] = $info->text;
|
||||
$fields_value['id_info'] = $idInfo;
|
||||
|
||||
return $fields_value;
|
||||
}
|
||||
|
||||
public function renderWidget($hookName = null, array $configuration = [])
|
||||
{
|
||||
if (!$this->isCached($this->templateFile, $this->getCacheId('ps_customtext'))) {
|
||||
$this->smarty->assign($this->getWidgetVariables($hookName, $configuration));
|
||||
}
|
||||
|
||||
return $this->fetch($this->templateFile, $this->getCacheId('ps_customtext'));
|
||||
}
|
||||
|
||||
public function getWidgetVariables($hookName = null, array $configuration = [])
|
||||
{
|
||||
$sql = 'SELECT * FROM `' . _DB_PREFIX_ . 'info_lang`
|
||||
WHERE `id_lang` = ' . (int) $this->context->language->id . ' AND `id_shop` = ' . (int) $this->context->shop->id;
|
||||
|
||||
return [
|
||||
'cms_infos' => Db::getInstance()->getRow($sql),
|
||||
];
|
||||
}
|
||||
|
||||
public function installFixtures()
|
||||
{
|
||||
$return = true;
|
||||
$tabTexts = [
|
||||
[
|
||||
'text' => '<h2>Custom Text Block</h2>
|
||||
<p><strong class="dark">Lorem ipsum dolor sit amet conse ctetu</strong></p>
|
||||
<p>Sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.</p>',
|
||||
],
|
||||
];
|
||||
|
||||
$shopsIds = Shop::getShops(true, null, true);
|
||||
$languages = Language::getLanguages(false);
|
||||
$text = [];
|
||||
|
||||
foreach ($tabTexts as $tab) {
|
||||
$info = new CustomText();
|
||||
foreach ($languages as $lang) {
|
||||
$text[$lang['id_lang']] = $tab['text'];
|
||||
}
|
||||
$info->text = $text;
|
||||
$return &= $info->add();
|
||||
}
|
||||
|
||||
if ($return && count($shopsIds) > 1) {
|
||||
foreach ($shopsIds as $idShop) {
|
||||
Shop::setContext(Shop::CONTEXT_SHOP, $idShop);
|
||||
$info->text = $text;
|
||||
$return &= $info->save();
|
||||
}
|
||||
}
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add CustomText when adding a new Shop
|
||||
*
|
||||
* @param array $params
|
||||
*/
|
||||
public function hookActionShopDataDuplication($params)
|
||||
{
|
||||
if ($infoId = CustomText::getCustomTextIdByShop($params['old_id_shop'])) {
|
||||
Shop::setContext(Shop::CONTEXT_SHOP, $params['old_id_shop']);
|
||||
$oldInfo = new CustomText($infoId);
|
||||
|
||||
Shop::setContext(Shop::CONTEXT_SHOP, $params['new_id_shop']);
|
||||
$newInfo = new CustomText($infoId, null, $params['new_id_shop']);
|
||||
$newInfo->text = $oldInfo->text;
|
||||
|
||||
$newInfo->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
28
modules/ps_customtext/ps_customtext.tpl
Normal file
28
modules/ps_customtext/ps_customtext.tpl
Normal file
@@ -0,0 +1,28 @@
|
||||
{**
|
||||
* 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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*}
|
||||
|
||||
<div id="custom-text">
|
||||
{$cms_infos.text nofilter}
|
||||
</div>
|
||||
34
modules/ps_customtext/translations/index.php
Normal file
34
modules/ps_customtext/translations/index.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*/
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
||||
0
modules/ps_customtext/translations/pl.php
Normal file
0
modules/ps_customtext/translations/pl.php
Normal file
34
modules/ps_customtext/upgrade/index.php
Normal file
34
modules/ps_customtext/upgrade/index.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*/
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
||||
56
modules/ps_customtext/upgrade/install-3.0.0.php
Normal file
56
modules/ps_customtext/upgrade/install-3.0.0.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*/
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Upgrade the Ps_Customtext module to V3.0.0
|
||||
*
|
||||
* @param Ps_Customtext $module
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function upgrade_module_3_0_0($module)
|
||||
{
|
||||
require_once _PS_MODULE_DIR_ . $module->name . '/classes/MigrateData.php';
|
||||
$migration = new MigrateData();
|
||||
|
||||
$return = true;
|
||||
|
||||
$migration->retrieveOldData();
|
||||
$return &= $module->uninstallDB();
|
||||
|
||||
/* Register the hook responsible for adding custom text when adding a new store */
|
||||
$return &= $module->registerHook('actionShopDataDuplication');
|
||||
|
||||
$return &= $module->installDB();
|
||||
|
||||
/* Reset DB data */
|
||||
$return &= $migration->insertData();
|
||||
|
||||
return (bool) $return;
|
||||
}
|
||||
Reference in New Issue
Block a user