mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 19:53:19 +03:00
19 lines
398 B
PHP
Executable File
19 lines
398 B
PHP
Executable File
<?php
|
|
/**
|
|
* @author Retail Driver LCC
|
|
* @copyright RetailCRM
|
|
* @license GPL
|
|
* @version 2.2.9
|
|
* @link https://retailcrm.ru
|
|
*/
|
|
require_once(dirname(__FILE__) . '/../../../config/config.inc.php');
|
|
require_once(dirname(__FILE__) . '/../../../init.php');
|
|
require_once(dirname(__FILE__) . '/../bootstrap.php');
|
|
|
|
JobManager::startJobs(
|
|
array(
|
|
'abandonedCarts' => null
|
|
),
|
|
true
|
|
);
|