<?php
class Callback_PageNode
{
public static function myfunction(XenForo_ControllerPublic_Abstract $controller, XenForo_ControllerResponse_Abstract &$response)
{
$db = XenForo_Application::get('db');
$results = $db->query('
SELECT *
FROM `xf_thread`
WHERE article = 1
');
$response->params['results'] = $results;
}
}