first commit
This commit is contained in:
113
modules/ps_googleanalytics/classes/Database/Install.php
Normal file
113
modules/ps_googleanalytics/classes/Database/Install.php
Normal file
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
|
||||
namespace PrestaShop\Module\Ps_Googleanalytics\Database;
|
||||
|
||||
use Configuration;
|
||||
use Db;
|
||||
use Ps_Googleanalytics;
|
||||
use Shop;
|
||||
|
||||
class Install
|
||||
{
|
||||
/**
|
||||
* @var Ps_Googleanalytics
|
||||
*/
|
||||
private $module;
|
||||
|
||||
public function __construct(Ps_Googleanalytics $module)
|
||||
{
|
||||
if (Shop::isFeatureActive()) {
|
||||
Shop::setContext(Shop::CONTEXT_ALL);
|
||||
}
|
||||
|
||||
$this->module = $module;
|
||||
}
|
||||
|
||||
/**
|
||||
* installTables
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function installTables()
|
||||
{
|
||||
$sql = [];
|
||||
|
||||
$sql[] = 'CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'ganalytics` (
|
||||
`id_google_analytics` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`id_order` int(11) NOT NULL,
|
||||
`id_customer` int(10) NOT NULL,
|
||||
`id_shop` int(11) NOT NULL,
|
||||
`sent` tinyint(1) DEFAULT NULL,
|
||||
`refund_sent` tinyint(1) DEFAULT NULL,
|
||||
`date_add` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id_google_analytics`),
|
||||
KEY `id_order` (`id_order`),
|
||||
KEY `sent` (`sent`)
|
||||
) ENGINE=' . _MYSQL_ENGINE_ . ' DEFAULT CHARSET=utf8 AUTO_INCREMENT=1';
|
||||
|
||||
$sql[] = 'CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'ganalytics_data` (
|
||||
`id_cart` int(11) NOT NULL,
|
||||
`id_shop` int(11) NOT NULL,
|
||||
`data` TEXT DEFAULT NULL,
|
||||
PRIMARY KEY (`id_cart`)
|
||||
) ENGINE=' . _MYSQL_ENGINE_ . ' DEFAULT CHARSET=utf8';
|
||||
|
||||
foreach ($sql as $query) {
|
||||
if (!Db::getInstance()->execute($query)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert default data to database
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function setDefaultConfiguration()
|
||||
{
|
||||
Configuration::updateValue('GA_CANCELLED_STATES', json_encode([Configuration::get('PS_OS_CANCELED')]));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Register Module hooks
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function registerHooks()
|
||||
{
|
||||
return $this->module->registerHook('displayHeader') &&
|
||||
$this->module->registerHook('displayAdminOrder') &&
|
||||
$this->module->registerHook('displayFooter') &&
|
||||
$this->module->registerHook('displayHome') &&
|
||||
$this->module->registerHook('displayFooterProduct') &&
|
||||
$this->module->registerHook('displayOrderConfirmation') &&
|
||||
$this->module->registerHook('actionProductCancel') &&
|
||||
$this->module->registerHook('actionOrderStatusPostUpdate') &&
|
||||
$this->module->registerHook('actionCartSave') &&
|
||||
$this->module->registerHook('displayBackOfficeHeader') &&
|
||||
$this->module->registerHook('actionCarrierProcess');
|
||||
}
|
||||
}
|
||||
45
modules/ps_googleanalytics/classes/Database/Uninstall.php
Normal file
45
modules/ps_googleanalytics/classes/Database/Uninstall.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
|
||||
namespace PrestaShop\Module\Ps_Googleanalytics\Database;
|
||||
|
||||
use Db;
|
||||
|
||||
class Uninstall
|
||||
{
|
||||
/**
|
||||
* uninstallTables
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function uninstallTables()
|
||||
{
|
||||
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'ganalytics`';
|
||||
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'ganalytics_data`';
|
||||
|
||||
foreach ($sql as $query) {
|
||||
if (!Db::getInstance()->execute($query)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
28
modules/ps_googleanalytics/classes/Database/index.php
Normal file
28
modules/ps_googleanalytics/classes/Database/index.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
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;
|
||||
Reference in New Issue
Block a user