문제

Is it possible in Drupal to find out which user modified a particular field? Not just the whole node. After saving the content I want to display the author name next to that field.

Not sure if this is possible or not.

도움이 되었습니까?

해결책

This is not provided by Drupal core, and (As far as I know) it is not provided by any contributed modules on drupal.org.

So, in order to do that, you would probably need to create a custom module.

A simple module to achieve that would have a database table with (nid, uid, current field value) and hook_node_presave implementation (compare field values, then update/insert/ignore saving new data to your database table).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top