. */ if (!defined('LACONICA')) { exit(1); } require_once(INSTALLDIR.'/lib/twitterapi.php'); class ApifriendshipsAction extends TwitterapiAction { function create($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); exit(); } function destroy($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); exit(); } function exists($args, $apidata) { parent::handle($args); common_server_error("API method under construction.", $code=501); exit(); } }