Điểm:0

How to get node id when update a page related to menu link

lá cờ gb

In my module I use the mymodulename_entity_update() function to listen when an entity is updated:

function mymodulename_entity_update($entity) {
    file_put_contents(__DIR__.'/test.txt', $entity->bundle());
}

When I update an article or a page which is not related to menu link, I receive 'node' as value of the ->bundle() property, as expected.

But if I update a page which is related to a menu link, I receive the 'menu_link_content' as the bundle value and all the data of the $entity object is the data of menu link. The same data I receive when update a menu link. And the only thing that helps me to detect whether a page was updated or menu link is the ->expanded->value property: in the case of a page it equals 0.

The second problem is, how to get ID of the node which is related to the menu link?

I was trying $entity->getRouteParameters()['node'] as recommended by the link https://drupal.stackexchange.com/a/281646/104765 but I receive the error

Call to undefined method Drupal\menu_link_content\Entity\MenuLinkContent::getRouteParameters()...

sonfd avatar
lá cờ in
Nếu bạn lưu một nút bằng liên kết menu, nó sẽ lưu liên kết menu (từ biểu mẫu trên biểu mẫu chỉnh sửa nút) cũng như nút. Không rõ bạn đang cố gắng làm gì, nhưng bạn có thể muốn sử dụng [hook_ENTITY_TYPE_update()](https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Entity%21entity.api .php/function/hook_ENTITY_TYPE_update/9.2.x), ví dụ: `hook_node_update()`, để chỉ hành động trên một nút được cập nhật.

Đă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.