Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Не правильный ключ языка при редактировании #6

Open
webinmd opened this issue May 23, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@webinmd
Copy link
Collaborator

webinmd commented May 23, 2024

Сообщение об ошибке / Error message

Резюме / Summary

Если редактировать заголовок из грида (процессор updatefromgrid), а поля ключ и Название локализатора отличаются, то в базу записывается название, а не ключ

Шаг для воспроизведения / Step to play

Создать 2 языка

  • key: ru / name: Русский
  • key: en / name: English

Создать ресурс, создать ему переводы
Попробовать отредактировать заголовок

Наблюдаемое поведение / Observed behavior

В базу запишется key = English

Ожидаемое поведение / Expected behavior

В базу должен записаться key = en

Проблема в процессоре updatefromgrid в строке получения key
https://github.com/modx-pro/localizator/blob/master/core/components/localizator/processors/mgr/content/updatefromgrid.class.php#L38

Environment

MODX 2.8.7, localizator 1.0.9

@webinmd webinmd added the bug Something isn't working label May 23, 2024
@webinmd
Copy link
Collaborator Author

webinmd commented May 23, 2024

Строка _key формируется следующим образом:
name [key] (host)
Нам необходимо получить key, на данный момент получаем name

Было

if ($key == '_key') {
    $key_value = explode(" ", $value);
    $this->setProperty('key', $key_value[0]);
}

Возможное решение

if ($key == '_key') {
    preg_match('|\[(.+?)\]|is', $value, $key_value);
    $this->setProperty('key', $key_value[1]);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant