/**
* Gets the most recent entries for display on the forum sidebar. Note that this method
* also affects the XenPorta add-on, so be aware of any changes here that may break it.
*
* @return array
*/
public function getRecentEntries()
{
return $this->_getDb()->fetchAll('
SELECT entry.*, user.username, user.avatar_date, user.avatar_width, user.avatar_height, user.gravatar
FROM lnblog_entry AS entry
LEFT JOIN xf_user AS user
ON (user.user_id = entry.user_id)
ORDER BY entry.entry_date DESC
LIMIT 3
');
}