1
0
Fork 0
mirror of synced 2025-04-04 14:23:33 +03:00
Добавлена проверка адреса и ключа на пустоту
Добавлены переводы ошибок
This commit is contained in:
Ivan Chaplygin 2023-08-30 12:18:35 +03:00
parent a3ac9af3db
commit 0ca62f9e28
3 changed files with 11 additions and 1 deletions

View file

@ -107,3 +107,6 @@ For the integration to work correctly, the currencies in CRM and CMS must match'
$MESS ['ACTIVITY_SETTINGS'] = 'Module activity settings';
$MESS ['DEACTIVATE_MODULE'] = 'Deactivate the module';
$MESS ['WRONG_CREDENTIALS'] = 'Enter the address and authorization key of the CRM system';
$MESS ['Wrong "apiKey" value.'] = 'Invalid authorization key';

View file

@ -166,3 +166,6 @@ $MESS ['TEMPLATE_COPING_ERROR'] = 'Ошибка копирования шабл
$MESS ['ACTIVITY_SETTINGS'] = 'Настройки активности модуля';
$MESS ['DEACTIVATE_MODULE'] = 'Деактивировать модуль';
$MESS ['WRONG_CREDENTIALS'] = 'Введите адрес и ключ авторизации CRM системы';
$MESS ['Wrong "apiKey" value.'] = 'Недействительный ключ авторизации';

View file

@ -276,6 +276,10 @@ if (isset($_POST['Update']) && ($_POST['Update'] === 'Y')) {
COption::SetOptionString($mid, 'api_host', $api_host);
COption::SetOptionString($mid, 'api_key', $api_key);
} else {
$uri .= '&errc=ERR_WRONG_CREDENTIALS';
LocalRedirect($uri);
}
//form order types ids arr
@ -1065,7 +1069,7 @@ if (isset($_POST['Update']) && ($_POST['Update'] === 'Y')) {
$errorsText = [];
if (preg_match('/&errc=ERR_(.*)/is', $APPLICATION->GetCurUri(), $matches)) {
$errorsText[] = urldecode($matches[1]);
$errorsText[] = GetMessage(urldecode($matches[1]));
}
if (empty($errorsText)) {