.
*/
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 = get_facebook();
$fbuid = $facebook->require_login();
$fbml = ''
.'Add an Identi.ca box to your profile!
'
.''
.'';
$fbml .= 'Allow Identi.ca to update my Facebook status
';
$this->show_header('Settings');
echo $fbml;
$this->show_footer();
}
}