. * * @category Search * @package StatusNet * @author Zach Copley * @copyright 2008-2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } /** * Returns the top ten queries that are currently trending * * @category Search * @package StatusNet * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ * * @see ApiAction */ class ApiTrendsAction extends ApiPrivateAuthAction { var $callback; /** * Initialization. * * @param array $args Web and URL arguments * * @return boolean false if user doesn't exist */ function prepare(array $args=array()) { parent::prepare($args); return true; } /** * Handle a request * * @param array $args Arguments from $_REQUEST * * @return void */ function handle(array $args=array()) { parent::handle($args); $this->showTrends(); } /** * Output the trends * * @return void */ function showTrends() { // TRANS: Server error for unfinished API method showTrends. $this->serverError(_('API method under construction.'), 501); } }