38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* Copyright (c) Franck Allimant, CQFDev */
|
|
/* email : thelia@cqfdev.fr */
|
|
/* web : http://www.cqfdev.fr */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace DynamicProductAttributes;
|
|
|
|
use Propel\Runtime\Connection\ConnectionInterface;
|
|
use Thelia\Install\Database;
|
|
use Thelia\Module\BaseModule;
|
|
|
|
class DynamicProductAttributes extends BaseModule
|
|
{
|
|
/** @var string */
|
|
const DOMAIN_NAME = 'dynamicproductattributes';
|
|
|
|
public function postActivation(ConnectionInterface $con = null)
|
|
{
|
|
$database = new Database($con);
|
|
|
|
$database->insertSql(null, [ __DIR__ . '/Config/thelia.sql' ]);
|
|
}
|
|
|
|
public function destroy(ConnectionInterface $con = null, $deleteModuleData = false)
|
|
{
|
|
if ($deleteModuleData) {
|
|
$database = new Database($con);
|
|
|
|
$database->insertSql(null, [__DIR__ . '/Config/destroy.sql']);
|
|
}
|
|
}
|
|
}
|