Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<?php
/**
* Copyright since 2007 PrestaShop SA 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.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.
*
* @author PrestaShop SA <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)
* International Registered Trademark & Property of PrestaShop SA
*/
namespace PrestaShop\Module\Ps_Googleanalytics\Repository;
use Db;
class CarrierRepository
{
const TABLE_NAME = 'carrier';
/**
* findByCarrierId
*
* @param int $carrierId
*
* @return string
*/
public function findByCarrierId($carrierId)
{
return Db::getInstance()->getValue(
'SELECT name
FROM `' . _DB_PREFIX_ . self::TABLE_NAME . '`
WHERE id_carrier = ' . (int) $carrierId
);
}
}

View File

@@ -0,0 +1,80 @@
<?php
/**
* Copyright since 2007 PrestaShop SA 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.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.
*
* @author PrestaShop SA <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)
* International Registered Trademark & Property of PrestaShop SA
*/
namespace PrestaShop\Module\Ps_Googleanalytics\Repository;
use Db;
class GanalyticsDataRepository
{
const TABLE_NAME = 'ganalytics_data';
/**
* findByCartId
*
* @param int $cartId
* @param int $shopId
*
* @return mixed
*/
public function findDataByCartIdAndShopId($cartId, $shopId)
{
return Db::getInstance()->getValue(
'SELECT data
FROM `' . _DB_PREFIX_ . self::TABLE_NAME . '`
WHERE id_cart = ' . (int) $cartId . '
AND id_shop = ' . (int) $shopId
);
}
/**
* addNewRow
*
* @param int $cartId
* @param int $shopId
* @param string $data
*
* @return bool
*/
public function addNewRow($cartId, $shopId, $data)
{
return Db::getInstance()->Execute(
'INSERT INTO `' . _DB_PREFIX_ . self::TABLE_NAME . '` (id_cart, id_shop, data)
VALUES(\'' . (int) $cartId . '\',\'' . (int) $shopId . '\',\'' . pSQL($data) . '\')
ON DUPLICATE KEY UPDATE data = \'' . pSQL($data) . '\';'
);
}
/**
* deleteRow
*
* @param int $cartId
* @param int $shopId
*
* @return bool
*/
public function deleteRow($cartId, $shopId)
{
return Db::getInstance()->delete(
self::TABLE_NAME,
'id_cart = ' . (int) $cartId . ' AND id_shop = ' . (int) $shopId
);
}
}

View File

@@ -0,0 +1,153 @@
<?php
/**
* Copyright since 2007 PrestaShop SA 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.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.
*
* @author PrestaShop SA <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)
* International Registered Trademark & Property of PrestaShop SA
*/
namespace PrestaShop\Module\Ps_Googleanalytics\Repository;
use Db;
class GanalyticsRepository
{
const TABLE_NAME = 'ganalytics';
/**
* Finds if we have a record for this order ID.
*
* @param int $orderId
*
* @return mixed
*/
public function findGaOrderByOrderId($orderId)
{
return Db::getInstance()->getValue(
'SELECT id_order
FROM `' . _DB_PREFIX_ . self::TABLE_NAME . '`
WHERE id_order = ' . (int) $orderId);
}
/**
* Checks if order is already sent to GA
*
* @param int $idOrder
*
* @return bool
*/
public function hasOrderBeenAlreadySent($idOrder)
{
return (bool) Db::getInstance()->getValue(
'SELECT `sent`
FROM `' . _DB_PREFIX_ . self::TABLE_NAME . '`
WHERE id_order = ' . (int) $idOrder);
}
/**
* findAllByShopIdAndDateAdd
*
* @param int $shopId
*
* @return array
*/
public function findAllByShopIdAndDateAdd($shopId)
{
return Db::getInstance()->ExecuteS(
'SELECT *
FROM `' . _DB_PREFIX_ . self::TABLE_NAME . '`
WHERE sent = 0
AND id_shop = ' . (int) $shopId . '
AND DATE_ADD(date_add, INTERVAL 30 minute) < NOW()'
);
}
/**
* addNewRow
*
* @param array $data
* @param int $type
*
* @return bool
*/
public function addNewRow(array $data, $type = Db::INSERT_IGNORE)
{
return Db::getInstance()->insert(
self::TABLE_NAME,
$data,
false,
true,
$type
);
}
/**
* Adds new order into repository
*
* @param int $idOrder
* @param int $idShop
*
* @return bool
*/
public function addOrder(int $idOrder, int $idShop)
{
return $this->addNewRow(
[
'id_order' => (int) $idOrder,
'id_shop' => (int) $idShop,
'sent' => 0,
'date_add' => ['value' => 'NOW()', 'type' => 'sql'],
]
);
}
/**
* updateData
*
* @param array $data
* @param string $where
* @param int $limit
*
* @return bool
*/
public function updateData($data, $where, $limit = 0)
{
return Db::getInstance()->update(
self::TABLE_NAME,
$data,
$where,
$limit
);
}
/**
* Marks order as successfully sent to GA via callback
*
* @param int $idOrder
*
* @return bool
*/
public function markOrderAsSent($idOrder)
{
return Db::getInstance()->update(
self::TABLE_NAME,
[
'date_add' => ['value' => 'NOW()', 'type' => 'sql'],
'sent' => 1,
],
'id_order = ' . (int) $idOrder
);
}
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* Copyright since 2007 PrestaShop SA 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.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.
*
* @author PrestaShop SA <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)
* International Registered Trademark & Property of PrestaShop SA
*/
header('Expires: Mon, 26 Jul 1998 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;