. */ if (!defined('LACONICA')) { exit(1); } require_once(INSTALLDIR.'/lib/facebookutil.php'); class FacebookAction extends Action { function handle($args) { parent::handle($args); } function show_header($selected = 'Home', $msg = null, $success = false) { start_fbml(); # Add a timestamp to the CSS file so Facebook cache wont ignore our changes $ts = filemtime(theme_file('facebookapp.css')); $cssurl = theme_path('facebookapp.css') . "?ts=$ts"; common_element('link', array('rel' => 'stylesheet', 'type' => 'text/css', 'href' => $cssurl)); common_element('fb:dashboard'); common_element_start('fb:tabs'); common_element('fb:tab-item', array('title' => 'Home', 'href' => 'index.php', 'selected' => ($selected == 'Home'))); common_element('fb:tab-item', array('title' => 'Invite', 'href' => 'invite.php', 'selected' => ($selected == 'Invite'))); common_element('fb:tab-item', array('title' => 'Settings', 'href' => 'settings.php', 'selected' => ($selected == 'Settings'))); common_element_end('fb:tabs'); if ($msg) { if ($success) { common_element('fb:success', array('message' => $msg)); } else { // XXX do an error message here } } common_element_start('div', 'main_body'); } function show_footer() { common_element_end('div'); common_end_xml(); } function showLoginForm($msg = null) { start_fbml(); common_element_start('a', array('href' => 'http://identi.ca')); common_element('img', array('src' => 'http://theme.identi.ca/identica/logo.png', 'alt' => 'Identi.ca', 'id' => 'logo')); common_element_end('a'); if ($msg) { common_element('fb:error', array('message' => $msg)); } common_element("h2", null, _('To add the Identi.ca application, you need to log into your Identi.ca account.')); common_element_start('div', array('class' => 'instructions')); common_element_start('p'); common_raw('Login with your username and password. Don\'t have a username yet?' .' Register a new account.'); common_element_end('p'); common_element_end('div'); common_element_start('div', array('id' => 'content')); common_element_start('form', array('method' => 'post', 'id' => 'login', 'action' => 'index.php')); common_input('nickname', _('Nickname')); common_password('password', _('Password')); common_submit('submit', _('Login')); common_element_end('form'); common_element_start('p'); common_element('a', array('href' => common_local_url('recoverpassword')), _('Lost or forgotten password?')); common_element_end('p'); common_element_end('div'); common_end_xml(); } }