31 lines
703 B
PHP
31 lines
703 B
PHP
<?php
|
|
/**
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This file is licenced under the Software License Agreement.
|
|
* With the purchase or the installation of the software in your application
|
|
* you accept the licence agreement.
|
|
*
|
|
* You must not modify, adapt or create derivative works of this source code
|
|
*
|
|
* @author eKomi
|
|
* @copyright 2017 eKomi
|
|
* @license LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Load Prestashop.
|
|
*/
|
|
require(dirname(__FILE__).'/../../../config/config.inc.php');
|
|
require(dirname(__FILE__).'/../../../init.php');
|
|
|
|
/**
|
|
* Load module files.
|
|
*/
|
|
require_once(_PS_MODULE_DIR_.'/ekomiratingsandreviews/ekomiratingsandreviews.php');
|
|
$module = new EkomiRatingsAndReviews();
|
|
|
|
$module->exportOrdersCron();
|
|
|
|
die;
|