drupal 7 : add 'updated by ' to admin content

343 Views Asked by At

The default admin content view display:

the author of the node

and

the date of the last update

but not

the person that did the last update.

Is it possible to add this information ( the logged-in user that modify the content) for any content type ?

1

There are 1 best solutions below

1
On

This method requires that node revision is enabled for the content type you want to apply this feature to.

To enable node revisions for article content type; Go to admin/structure/types/manage/article. and under Publishing options make sure that Create new revision is enabled.

To get the person that did the last update

$revisions = node_revision_list($node);
$lastUpdatedAuthorUid = $revisions[0]['uid'];
$lastUpdatedAuthorName = $revisions[0]['name'];