This commit is contained in:
2025-03-21 20:24:43 +01:00
parent 224398df90
commit f34c9162d4
12427 changed files with 5329941 additions and 373384 deletions

View File

@@ -1,30 +1,24 @@
<?php
/*
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 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/afl-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/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
/**
* 2007-2020 PrestaShop and Contributors
*
* 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.txt.
* 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.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2020 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
use PrestaShop\PrestaShop\Adapter\Cart\CartPresenter;
use PrestaShop\PrestaShop\Adapter\Presenter\Cart\CartPresenter;
if (!defined('_PS_VERSION_')) {
exit;
@@ -34,175 +28,268 @@ use PrestaShop\PrestaShop\Core\Module\WidgetInterface;
class Ps_Shoppingcart extends Module implements WidgetInterface
{
/**
* @var string Name of the module running on PS 1.6.x. Used for data migration.
*/
const PS_16_EQUIVALENT_MODULE = 'blockcart';
public function __construct()
{
$this->name = 'ps_shoppingcart';
$this->tab = 'front_office_features';
$this->version = '2.0.2';
$this->version = '3.0.0';
$this->author = 'PrestaShop';
$this->need_instance = 0;
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->trans('Shopping cart', array(), 'Modules.Shoppingcart.Admin');
$this->description = $this->trans('Adds a block containing the customer\'s shopping cart.', array(), 'Modules.Shoppingcart.Admin');
$this->ps_versions_compliancy = array('min' => '1.7.1.0', 'max' => _PS_VERSION_);
$this->controllers = array('ajax');
$this->displayName = $this->trans('Shopping cart', [], 'Modules.Shoppingcart.Admin');
$this->description = $this->trans('Display a shopping cart icon on your pages and the number of items it contains.', [], 'Modules.Shoppingcart.Admin');
$this->ps_versions_compliancy = ['min' => '1.7.5.0', 'max' => _PS_VERSION_];
$this->controllers = ['ajax'];
}
public function hookHeader()
/**
* @return void
*/
public function hookDisplayHeader()
{
if (Configuration::isCatalogMode()) {
return;
}
if (Configuration::get('PS_BLOCK_CART_AJAX')) {
$this->context->controller->registerJavascript('modules-shoppingcart', 'modules/'.$this->name.'/ps_shoppingcart.js', ['position' => 'bottom', 'priority' => 150]);
$this->context->controller->registerJavascript('modules-shoppingcart', 'modules/' . $this->name . '/ps_shoppingcart.js', ['position' => 'bottom', 'priority' => 150]);
}
}
/**
* @return string
*/
private function getCartSummaryURL()
{
return $this->context->link->getPageLink(
'cart',
null,
$this->context->language->id,
array(
'action' => 'show'
),
[
'action' => 'show',
],
false,
null,
true
);
}
/**
* @param string|null $hookName
* @param array<string,mixed> $params
*
* @return array<string,mixed>
*/
public function getWidgetVariables($hookName, array $params)
{
$cart_url = $this->getCartSummaryURL();
return array(
'cart' => (new CartPresenter)->present(isset($params['cart']) ? $params['cart'] : $this->context->cart),
'refresh_url' => $this->context->link->getModuleLink('ps_shoppingcart', 'ajax', array(), null, null, null, true),
'cart_url' => $cart_url
);
return [
'cart' => $this->getPresentedCart(),
'refresh_url' => $this->context->link->getModuleLink('ps_shoppingcart', 'ajax', [], null, null, null, true),
'cart_url' => $this->getCartSummaryURL(),
];
}
/**
* Provides an already presented object from the context if set.
* If not, runs the presenter.
*
* @return array presented cart
*/
private function getPresentedCart()
{
/*
* We will use the already presented cart in the first place. It should be already in the template.
* Check FrontController::assignGeneralPurposeVariables for more information.
*
* If it's not, we will present the cart ourselves. There will always be a cart object
* assigned in FrontController::init.
*/
if (!empty($this->context->smarty->getTemplateVars('cart'))) {
return $this->context->smarty->getTemplateVars('cart');
} else {
return (new CartPresenter())->present($this->context->cart);
}
}
/**
* @param string|null $hookName
* @param array<string,mixed> $params
*
* @return string
*/
public function renderWidget($hookName, array $params)
{
if (Configuration::isCatalogMode()) {
return;
return '';
}
$this->smarty->assign($this->getWidgetVariables($hookName, $params));
return $this->fetch('module:ps_shoppingcart/ps_shoppingcart.tpl');
}
public function renderModal(Cart $cart, $id_product, $id_product_attribute)
/**
* @param int $id_product
* @param int $id_product_attribute
* @param int $id_customization
*
* @return string
*
* @throws Exception
*/
public function renderModal($id_product, $id_product_attribute, $id_customization)
{
$data = (new CartPresenter)->present($cart);
$data = $this->getPresentedCart();
$product = null;
foreach ($data['products'] as $p) {
if ($p['id_product'] == $id_product && $p['id_product_attribute'] == $id_product_attribute) {
if ((int) $p['id_product'] == $id_product &&
(int) $p['id_product_attribute'] == $id_product_attribute &&
(int) $p['id_customization'] == $id_customization) {
$product = $p;
break;
}
}
$this->smarty->assign(array(
$this->smarty->assign([
'product' => $product,
'cart' => $data,
'cart_url' => $this->getCartSummaryURL(),
));
]);
return $this->fetch('module:ps_shoppingcart/modal.tpl');
}
/**
* @return string
*/
public function getContent()
{
$output = '';
if (Tools::isSubmit('submitBlockCart')) {
$ajax = Tools::getValue('PS_BLOCK_CART_AJAX');
if ($ajax != 0 && $ajax != 1) {
$output .= $this->displayError($this->trans('Ajax: Invalid choice.', array(), 'Modules.Shoppingcart.Admin'));
$output .= $this->displayError($this->trans('Ajax: Invalid choice.', [], 'Modules.Shoppingcart.Admin'));
} else {
Configuration::updateValue('PS_BLOCK_CART_AJAX', (int)($ajax));
Configuration::updateValue('PS_BLOCK_CART_AJAX', (int) ($ajax));
Tools::redirectAdmin($this->context->link->getAdminLink('AdminModules') . '&configure=' . $this->name . '&conf=6');
}
}
return $output.$this->renderForm();
return $output . $this->renderForm();
}
/**
* @return bool
*/
public function install()
{
$this->uninstallPrestaShop16Module();
return
parent::install()
&& $this->registerHook('header')
&& $this->registerHook('displayTop')
&& Configuration::updateValue('PS_BLOCK_CART_AJAX', 1)
;
&& $this->registerHook('displayHeader')
&& $this->registerHook('displayNav2')
&& Configuration::updateValue('PS_BLOCK_CART_AJAX', 1);
}
/**
* Migrate data from 1.6 equivalent module (if applicable), then uninstall
*
* @return bool
*/
public function uninstallPrestaShop16Module()
{
if (!Module::isInstalled(self::PS_16_EQUIVALENT_MODULE)) {
return false;
}
$oldModule = Module::getInstanceByName(self::PS_16_EQUIVALENT_MODULE);
if ($oldModule) {
// This closure calls the parent class to prevent data to be erased
// It allows the new module to be configured without migration
$parentUninstallClosure = function () {
return parent::uninstall();
};
$parentUninstallClosure = $parentUninstallClosure->bindTo($oldModule, get_class($oldModule));
$parentUninstallClosure();
}
return true;
}
/**
* @return string
*/
public function renderForm()
{
$fields_form = array(
'form' => array(
'legend' => array(
'title' => $this->trans('Settings', array(), 'Admin.Global'),
$fields_form = [
'form' => [
'legend' => [
'title' => $this->trans('Settings', [], 'Admin.Global'),
'icon' => 'icon-cogs',
),
'input' => array(
array(
],
'input' => [
[
'type' => 'switch',
'label' => $this->trans('Ajax cart', array(), 'Modules.Shoppingcart.Admin'),
'label' => $this->trans('Ajax cart', [], 'Modules.Shoppingcart.Admin'),
'name' => 'PS_BLOCK_CART_AJAX',
'is_bool' => true,
'desc' => $this->trans('Activate Ajax mode for the cart (compatible with the default theme).', array(), 'Modules.Shoppingcart.Admin'),
'values' => array(
array(
'desc' => $this->trans('Activate Ajax mode for the cart (compatible with the default theme).', [], 'Modules.Shoppingcart.Admin'),
'values' => [
[
'id' => 'active_on',
'value' => 1,
'label' => $this->trans('Enabled', array(), 'Admin.Global'),
),
array(
'label' => $this->trans('Yes', [], 'Admin.Global'),
],
[
'id' => 'active_off',
'value' => 0,
'label' => $this->trans('Disabled', array(), 'Admin.Global'),
)
),
),
),
'submit' => array(
'title' => $this->trans('Save', array(), 'Admin.Actions'),
),
),
);
'label' => $this->trans('No', [], 'Admin.Global'),
],
],
],
],
'submit' => [
'title' => $this->trans('Save', [], 'Admin.Actions'),
],
],
];
$helper = new HelperForm();
$helper->show_toolbar = false;
$helper->table = $this->table;
$lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
$helper->table = $this->table;
$lang = new Language((int) Configuration::get('PS_LANG_DEFAULT'));
$helper->default_form_language = $lang->id;
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
$this->fields_form = array();
$helper->identifier = $this->identifier;
$helper->submit_action = 'submitBlockCart';
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab
.'&module_name='.$this->name;
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false) . '&configure=' . $this->name . '&tab_module=' . $this->tab
. '&module_name=' . $this->name;
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->tpl_vars = array(
$helper->tpl_vars = [
'fields_value' => $this->getConfigFieldsValues(),
'languages' => $this->context->controller->getLanguages(),
'id_language' => $this->context->language->id
);
'id_language' => $this->context->language->id,
];
return $helper->generateForm(array($fields_form));
return $helper->generateForm([$fields_form]);
}
/**
* @return bool[]
*/
public function getConfigFieldsValues()
{
return array(
'PS_BLOCK_CART_AJAX' => (bool)Tools::getValue('PS_BLOCK_CART_AJAX', Configuration::get('PS_BLOCK_CART_AJAX')),
);
return [
'PS_BLOCK_CART_AJAX' => (bool) Tools::getValue('PS_BLOCK_CART_AJAX', Configuration::get('PS_BLOCK_CART_AJAX')),
];
}
}