2009-12-08 21:16:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
2010-01-26 07:50:01 +00:00
|
|
|
* 'Sign in with Twitter' login page
|
2009-12-08 21:16:03 +00:00
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: 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
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2010-01-26 07:50:01 +00:00
|
|
|
* @category Login
|
2009-12-08 21:16:03 +00:00
|
|
|
* @package StatusNet
|
2010-01-26 07:50:01 +00:00
|
|
|
* @author Julien Chaumond <chaumond@gmail.com>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
2009-12-08 21:16:03 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2015-07-17 17:44:09 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2009-12-08 21:16:03 +00:00
|
|
|
|
2014-08-06 08:29:47 +01:00
|
|
|
require_once dirname(__DIR__) . '/twitter.php';
|
2009-12-08 21:16:03 +00:00
|
|
|
|
|
|
|
/**
|
2010-01-26 07:50:01 +00:00
|
|
|
* Page for logging in with Twitter
|
2009-12-08 21:16:03 +00:00
|
|
|
*
|
2010-01-26 07:50:01 +00:00
|
|
|
* @category Login
|
2009-12-08 21:16:03 +00:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Julien Chaumond <chaumond@gmail.com>
|
2010-01-26 07:50:01 +00:00
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-12-08 21:16:03 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*
|
|
|
|
* @see SettingsAction
|
|
|
|
*/
|
2015-07-17 17:44:09 +01:00
|
|
|
class TwitterloginAction extends LoginAction
|
2009-12-08 21:16:03 +00:00
|
|
|
{
|
|
|
|
function title()
|
|
|
|
{
|
2011-06-18 16:20:36 +01:00
|
|
|
// TRANS: Title for login using Twitter page.
|
|
|
|
return _m('TITLE','Twitter Login');
|
2009-12-08 21:16:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getInstructions()
|
|
|
|
{
|
2011-06-18 16:20:36 +01:00
|
|
|
// TRANS: Instructions for login using Twitter page.
|
2010-09-18 16:45:18 +01:00
|
|
|
return _m('Login with your Twitter account');
|
2009-12-08 21:16:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showContent()
|
|
|
|
{
|
2010-01-26 02:40:44 +00:00
|
|
|
$this->elementStart('a', array('href' => common_local_url('twitterauthorization',
|
|
|
|
null,
|
|
|
|
array('signin' => true))));
|
2011-02-03 16:03:24 +00:00
|
|
|
$this->element('img', array('src' => Plugin::staticPath('TwitterBridge', 'Sign-in-with-Twitter-lighter.png'),
|
2011-06-18 16:20:36 +01:00
|
|
|
// TRANS: Alternative text for "sign in with Twitter" image.
|
2010-09-18 16:45:18 +01:00
|
|
|
'alt' => _m('Sign in with Twitter')));
|
2009-12-08 21:16:03 +00:00
|
|
|
$this->elementEnd('a');
|
|
|
|
}
|
|
|
|
|
|
|
|
function showLocalNav()
|
|
|
|
{
|
|
|
|
$nav = new LoginGroupNav($this);
|
|
|
|
$nav->show();
|
|
|
|
}
|
|
|
|
}
|