Does anyone knows how or point me in the direction to show the last guestbook entry (using the simple guestbook module) in the sidebar or homepage?
trying to have a go, I’ve put in HomePage.php this function
function LastGuest($nume=1) {
$guest = DataObject::get_one("Guestbook");
return ($guest) ? DataObject::get("GuestbookEntry", "", "Date DESC", "", $nume) : false;
}
and in HomePage.ss this:
<% control LastGuest %>
<div class="newsList">
<h2 class="newsTitle">$Title.XML</h2>
<article class="newsSummary">$Comment</article>
</div>
<% end_control %>
But it doesn’t work. I get a 500 error. Any idea?
Thanks in advance.
This works for me. First see if you have a page of class
Guestbook, grab theIDof the page. Then use thatIDin the arguments toGuestbookEntry::getEntryList.