2014-11-26 5 views

답변

2

이 방법을 사용하려면이 기능을 적용 할 컨텐트 유형에 노드 개정이 사용 가능해야합니다.

article 콘텐츠 유형의 노드 개정을 활성화하려면 다음을 수행하십시오. admin/structure/types/manage/article으로 이동하십시오. Publishing options 아래에서 Create new revision이 활성화되어 있는지 확인하십시오.

the person that did the last update

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

감사를 얻으려면! 어떻게하면 admin/content의 각 항목에이 정보를 추가 할 수 있습니까? – Matoeil