$query = "SELECT [...]";
$threads = XenForo_Application::get('db')->fetchAll($query);
foreach ($threads as $thread)
{
$threadUrl = XenForo_Link::buildPublicLink('full:threads', $thread);
$threadTitle = XenForo_Template_Helper_Core::helperWordTrim($thread['title'], 50);
}