Điểm:1

How to translate the layout builder blocks of a node programmatically?

lá cờ kr

I am translating the nodes programmatically. Everything works fine except the layout builder blocks.

When I try to translate it, it also changes on the source node.

I have created a node in language en. Now I am translating it to nl. Here is my code.

if ($node->hasTranslation($language)) {
  $translated_entity =  $node->getTranslation($language);
}
else {
  $translated_entity =  $entity->addTranslation($language);
}

$translated_layout = $node->get('layout_builder__layout')->getValue();

foreach ($translated_layout as $section) {
  /** @var \Drupal\layout_builder\Section $section */
  $section = reset($section);

  foreach ($section->getComponents() as $component) {
    $configuration = $component->get('configuration');

    $component->setConfiguration($translated_configurations);
  }
}

$translated_entity->set('layout_builder__layout', $translated_layout);
$translated_entity->save();
$node->save();

Is there any way to retain the original blocks as it is on the source node and the save function only added the changes to the translated node?

lá cờ in
Có lý do nào khiến bạn thực hiện bản dịch này theo chương trình không?
Điểm:0
lá cờ kr

Tôi đã làm điều đó bản thân mình. Đây là giải pháp.

Trước tiên, bạn cần sao chép bố cục từ nút nguồn sang nút đã dịch.

Sau đó lấy bố cục của nút đã dịch và dịch nó.

if ($node->hasTranslation($language)) {
  $translated_entity = $node->getTranslation($language);
}
khác {
  $translated_entity = $entity->addTranslation($language);
}

$translated_entity->set('layout_builder__layout', $node->get('layout_builder__layout')->getValue());
$translated_entity->save();

$translated_layout = $translated_entity->get('layout_builder__layout')->getValue();

foreach ($translate_layout dưới dạng $section) {
  /** @var \Drupal\layout_builder\Section $section */
  $ phần = đặt lại ($ phần);

  foreach ($section->getComponents() dưới dạng $component) {
    $configuration = $component->get('configuration');

    $component->setConfiguration($translate_configurations);
  }
}

$translated_entity->set('layout_builder__layout', $translated_layout);     
$node->save();

Đăng câu trả lời

Hầu hết mọi người không hiểu rằng việc đặt nhiều câu hỏi sẽ mở ra cơ hội học hỏi và cải thiện mối quan hệ giữa các cá nhân. Ví dụ, trong các nghiên cứu của Alison, mặc dù mọi người có thể nhớ chính xác có bao nhiêu câu hỏi đã được đặt ra trong các cuộc trò chuyện của họ, nhưng họ không trực giác nhận ra mối liên hệ giữa câu hỏi và sự yêu thích. Qua bốn nghiên cứu, trong đó những người tham gia tự tham gia vào các cuộc trò chuyện hoặc đọc bản ghi lại các cuộc trò chuyện của người khác, mọi người có xu hướng không nhận ra rằng việc đặt câu hỏi sẽ ảnh hưởng—hoặc đã ảnh hưởng—mức độ thân thiện giữa những người đối thoại.