. */ if (!defined('LACONICA')) { exit(1); } class ApistatusesAction extends Action { function public_timeline($args) { parent::handle($args); print "Public Timeline!\n"; exit(); } function show($args, $apidata) { parent::handle($args); common_debug("statuses/show"); print_r($args); print_r($apidata); exit(); } function update($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); } function replies($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); } function destroy($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); } # User Methods function friends($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); } function followers($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); } function featured($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); } }