2008-12-06 12:01:32 +09:00
|
|
|
<?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
|
2008-12-24 04:19:07 +09:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-12-06 12:01:32 +09:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2008-12-24 04:19:07 +09:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-06 12:01:32 +09:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
|
|
|
|
|
|
|
require_once(INSTALLDIR.'/lib/facebookaction.php');
|
|
|
|
|
2008-12-24 04:49:23 +09:00
|
|
|
class FacebookinviteAction extends FacebookAction
|
|
|
|
{
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
parent::handle($args);
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$this->display();
|
|
|
|
}
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function display()
|
|
|
|
{
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2009-01-05 10:04:07 +09:00
|
|
|
$facebook = get_facebook();
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$fbuid = $facebook->require_login();
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$this->show_header('Invite');
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2009-01-11 12:00:12 +09:00
|
|
|
$fbml = '<fb:request-form '
|
|
|
|
.'action="invite.php" '
|
|
|
|
.'method="POST" '
|
|
|
|
.'invite="true" '
|
|
|
|
.'type="Identi.ca" '
|
|
|
|
.'content="You have been invited to Identi.ca! '
|
|
|
|
. htmlentities('<fb:req-choice url="http://apps.facebook.com/identica_app/" label="Add"/>') . '">'
|
|
|
|
.'<fb:multi-friend-selector showborder="false" actiontext="Invite your friends to use Identi.ca.">'
|
|
|
|
.'</fb:request-form>';
|
|
|
|
|
|
|
|
echo $fbml;
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$this->show_footer();
|
2008-12-06 12:01:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-12-06 12:01:32 +09:00
|
|
|
|
|
|
|
}
|