15 lines
350 B
PHP
Raw Normal View History

2016-05-17 15:54:37 +02:00
<?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();