diff options
author | zach <zach@copley.name> | 2008-07-14 04:09:49 -0400 |
---|---|---|
committer | zach <zach@copley.name> | 2008-07-14 04:09:49 -0400 |
commit | fdc7bfcc51a1eb599773145549fe79e521b56821 (patch) | |
tree | c7e6a226943507a7fe6506a9473fcac15328028f /actions/apidirect_messages.php | |
parent | cc55a45f4bad24d5921b4575389650e93efe6605 (diff) |
Stubs for all Twitter-API methods
darcs-hash:20080714080949-ca946-7372d114c1db9f48aa79f7bd8a5f67042da37ac4.gz
Diffstat (limited to 'actions/apidirect_messages.php')
-rw-r--r-- | actions/apidirect_messages.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/actions/apidirect_messages.php b/actions/apidirect_messages.php new file mode 100644 index 000000000..125aad128 --- /dev/null +++ b/actions/apidirect_messages.php @@ -0,0 +1,51 @@ +<?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if (!defined('LACONICA')) { exit(1); } + +# This naming convention looks real sick +class Apidirect_messagesAction extends Action { + + + function index($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + exit(); + } + + function sent($args, $apidata) { + parent::handle($args); + common_server_error("API method under construction.", $code=501); + exit(); + } + + function new($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(); + } + + +}
\ No newline at end of file |