. */ if (!defined('LACONICA')) { exit(1); } require_once(INSTALLDIR.'/lib/facebookaction.php'); class FacebookinviteAction extends FacebookAction { function handle($args) { parent::handle($args); $this->display(); } function display() { $facebook = $this->get_facebook(); $fbuid = $facebook->require_login(); $this->show_header('Invite'); echo '

Coming soon...

'; $this->show_footer(); } }