32 lines
1.4 KiB
PHP
32 lines
1.4 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace OrderComment;
|
|
|
|
use OrderComment\Model\OrderCommentQuery;
|
|
use Propel\Runtime\Connection\ConnectionInterface;
|
|
use Thelia\Install\Database;
|
|
use Thelia\Module\BaseModule;
|
|
|
|
class OrderComment extends BaseModule
|
|
{
|
|
public function postActivation(ConnectionInterface $con = null)
|
|
{
|
|
try {
|
|
OrderCommentQuery::create()->findOne();
|
|
} catch (\Exception $e) {
|
|
$database = new Database($con->getWrappedConnection());
|
|
$database->insertSql(null, array(THELIA_ROOT . '/local/modules/OrderComment/Config/thelia.sql'));
|
|
}
|
|
}
|
|
}
|