vtenext/modules/Settings/ListProfilesAjax.php
2021-04-28 20:10:26 +02:00

42 lines
1.6 KiB
PHP

<?php
/*************************************
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
* SPDX-License-Identifier: AGPL-3.0-only
************************************/
/* crmv@150592 */
global $adb, $table_prefix, $mod_strings, $app_strings;
$smarty = new VteSmarty();
$userInfoUtils = UserInfoUtils::getInstance();
$subMode = $_REQUEST['sub_mode'];
$displayVersion = $_REQUEST['displayVersion'];
if ($subMode == 'closeVersion') {
$userInfoUtils->closeVersion_profile();
} elseif ($subMode == 'checkExportVersion') {
$err_string = '';
$userInfoUtils->checkExportVersion_profile($err_string);
if ($err_string != '') die($err_string);
} elseif ($subMode == 'exportVersion') {
$userInfoUtils->exportVersion_profile();
} elseif ($subMode == 'importVersion') {
$err_string = '';
$result = $userInfoUtils->importVersion_profile($err_string);
if ($result === false) $smarty->assign("ERROR_STRING", addslashes($err_string));
include('modules/Settings/ListProfiles.php');
}
if ($displayVersion == 'true') {
$pending_version = $userInfoUtils->getPendingVersion_profile();
$smarty->assign('PENDING_VERSION', $pending_version['version']);
$smarty->assign('CURRENT_VERSION', $userInfoUtils->getCurrentVersionNumber_profile());
$smarty->assign('PERM_VERSION_EXPORT', $userInfoUtils->isExportPermitted_profile());
$smarty->assign('PERM_VERSION_IMPORT', $userInfoUtils->isImportPermitted_profile());
$smarty->assign('CHECK_VERSION_IMPORT', $userInfoUtils->checkImportVersion_profile());
$smarty->assign('MOD', $mod_strings);
$smarty->assign('APP', $app_strings);
$smarty->display('Settings/ListRolesVersion.tpl');
}