2009-01-18 12:48:47 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-18 12:48:47 +00:00
|
|
|
*
|
|
|
|
* Menu for login group of actions
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @category Menu
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008 StatusNet, Inc.
|
2009-01-18 12:48:47 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-18 12:48:47 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-18 12:48:47 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once INSTALLDIR.'/lib/widget.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Menu for login group of actions
|
|
|
|
*
|
|
|
|
* @category Output
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-18 12:48:47 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-18 12:48:47 +00:00
|
|
|
*
|
|
|
|
* @see Widget
|
|
|
|
*/
|
2011-03-01 11:00:03 +00:00
|
|
|
class LoginGroupNav extends Menu
|
2009-01-18 12:48:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Show the menu
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function show()
|
|
|
|
{
|
|
|
|
$action_name = $this->action->trimmed('action');
|
2009-08-04 11:52:57 +01:00
|
|
|
|
2009-01-18 12:48:47 +00:00
|
|
|
$this->action->elementStart('ul', array('class' => 'nav'));
|
|
|
|
|
2011-01-18 20:34:27 +00:00
|
|
|
if (Event::handle('StartLoginGroupNav', array($this->action))) {
|
2009-08-04 11:52:57 +01:00
|
|
|
|
|
|
|
$this->action->menuItem(common_local_url('login'),
|
2011-01-28 23:33:13 +00:00
|
|
|
// TRANS: Menu item for logging in to the StatusNet site.
|
|
|
|
_m('MENU','Login'),
|
|
|
|
// TRANS: Title for menu item for logging in to the StatusNet site.
|
2009-08-04 11:52:57 +01:00
|
|
|
_('Login with a username and password'),
|
|
|
|
$action_name === 'login');
|
|
|
|
|
2011-03-09 15:15:19 +00:00
|
|
|
if (!common_logged_in() &&
|
|
|
|
!(common_config('site','closed') || common_config('site','inviteonly'))) {
|
2009-08-04 11:52:57 +01:00
|
|
|
$this->action->menuItem(common_local_url('register'),
|
2011-01-28 23:33:13 +00:00
|
|
|
// TRANS: Menu item for registering with the StatusNet site.
|
|
|
|
_m('MENU','Register'),
|
|
|
|
// TRANS: Title for menu item for registering with the StatusNet site.
|
2009-08-04 11:52:57 +01:00
|
|
|
_('Sign up for a new account'),
|
|
|
|
$action_name === 'register');
|
|
|
|
}
|
|
|
|
|
2011-01-18 20:34:27 +00:00
|
|
|
Event::handle('EndLoginGroupNav', array($this->action));
|
2009-01-18 12:48:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->action->elementEnd('ul');
|
|
|
|
}
|
|
|
|
}
|