mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 19:53:19 +03:00
* multi module for api v4, v5 * bug fix empty payment in history * add module key for marketplace * fix for validation on marketplace, edit validation form for saving settings * Bug fix * Bug fixes in customer search
22 lines
516 B
PHP
22 lines
516 B
PHP
<?php
|
|
/**
|
|
* @author Retail Driver LCC
|
|
* @copyright RetailCRM
|
|
* @license GPL
|
|
* @version 2.1.3
|
|
* @link https://retailcrm.ru
|
|
*
|
|
*/
|
|
|
|
$_SERVER['HTTPS'] = 1;
|
|
|
|
require(dirname(__FILE__) . '/../../../config/config.inc.php');
|
|
require(dirname(__FILE__) . '/../../../init.php');
|
|
require(dirname(__FILE__) . '/../bootstrap.php');
|
|
|
|
$job = new RetailcrmCatalog();
|
|
$data = $job->getData();
|
|
|
|
$icml = new RetailcrmIcml(Configuration::get('PS_SHOP_NAME'), _PS_ROOT_DIR_ . '/retailcrm.xml');
|
|
$icml->generate($data[0], $data[1]);
|