15 lines
350 B
PHP
15 lines
350 B
PHP
|
<?php
|
||
|
|
||
|
include_once('../../config/config.inc.php');
|
||
|
include_once('gls.php');
|
||
|
include_once('classes/GLSManagement.php');
|
||
|
|
||
|
if (Tools::getValue('secure_key') != Configuration::get('GLS_SECURE_KEY')) {
|
||
|
echo ' - BAD KEY - ';
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
$oGlsManagement = new GlsManagement();
|
||
|
$oGlsManagement->GLSexportToWinExpe();
|
||
|
$oGlsManagement->GLSImportFromWinExpe();
|