From dccf8374cf7e4673cbc83f695e1665031bdf6539 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 5 Dec 2008 22:01:32 -0500 Subject: trac750 - Exoskeleton of a nascent Facebook app darcs-hash:20081206030132-7b5ce-96c38ab67edd3d58f8722ef25852a6143f05a86b.gz --- actions/facebooksettings.php | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 actions/facebooksettings.php (limited to 'actions/facebooksettings.php') diff --git a/actions/facebooksettings.php b/actions/facebooksettings.php new file mode 100644 index 000000000..3855a0c29 --- /dev/null +++ b/actions/facebooksettings.php @@ -0,0 +1,46 @@ +. + */ + +if (!defined('LACONICA')) { exit(1); } + +require_once(INSTALLDIR.'/lib/facebookaction.php'); + +class FacebooksettingsAction extends FacebookAction { + + function handle($args) { + parent::handle($args); + + $this->display(); + } + + function display() { + + $facebook = $this->get_facebook(); + + $fbuid = $facebook->require_login(); + + $this->show_header('Settings'); + + echo '

Coming soon...

'; + + $this->show_footer(); + + } + +} -- cgit v1.2.3-54-g00ecf