2008-06-24 22:50:33 +01:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-06-24 22:50:33 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
2008-06-24 22:50:33 +01:00
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// You have 24 hours to claim your password
|
2008-06-24 23:55:56 +01:00
|
|
|
|
2010-03-03 00:07:35 +00:00
|
|
|
define('MAX_RECOVERY_TIME', 24 * 60 * 60);
|
2008-06-24 23:55:56 +01:00
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class RecoverpasswordAction extends Action
|
|
|
|
{
|
2009-01-23 00:00:01 +00:00
|
|
|
var $mode = null;
|
|
|
|
var $msg = null;
|
|
|
|
var $success = null;
|
2008-06-24 22:50:33 +01:00
|
|
|
|
2016-06-01 03:05:11 +01:00
|
|
|
function handle()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2016-06-01 03:05:11 +01:00
|
|
|
parent::handle();
|
2008-06-24 22:50:33 +01:00
|
|
|
if (common_logged_in()) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Client error displayed trying to recover password while already logged in.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('You are already logged in!'));
|
2008-06-24 22:50:33 +01:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($this->arg('recover')) {
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->recoverPassword();
|
2008-06-24 22:50:33 +01:00
|
|
|
} else if ($this->arg('reset')) {
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->resetPassword();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Client error displayed when unexpected data is posted in the password recovery form.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Unexpected form submission.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($this->trimmed('code')) {
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->checkCode();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->showForm();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function checkCode()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$code = $this->trimmed('code');
|
2013-08-18 12:04:58 +01:00
|
|
|
$confirm = Confirm_address::getKV('code', $code);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if (!$confirm) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Client error displayed when password recovery code is not correct.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('No such recovery code.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
if ($confirm->address_type != 'recover') {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Client error displayed when no proper password recovery code was submitted.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Not a recovery code.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-18 12:04:58 +01:00
|
|
|
$user = User::getKV($confirm->user_id);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if (!$user) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Server error displayed trying to recover password without providing a user.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('Recovery code for unknown user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$touched = strtotime($confirm->modified);
|
|
|
|
$email = $confirm->address;
|
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// Burn this code
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2016-03-02 14:31:48 +00:00
|
|
|
$confirm->delete();
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// These should be reaped, but for now we just check mod time
|
|
|
|
// Note: it's still deleted; let's avoid a second attempt!
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if ((time() - $touched) > MAX_RECOVERY_TIME) {
|
2009-01-23 00:00:01 +00:00
|
|
|
common_log(LOG_WARNING,
|
2008-12-23 19:19:07 +00:00
|
|
|
'Attempted redemption on recovery code ' .
|
|
|
|
'that is ' . $touched . ' seconds old. ');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Client error displayed trying to recover password with too old a recovery code.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('This confirmation code is too old. ' .
|
2008-12-23 19:19:07 +00:00
|
|
|
'Please start again.'));
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// If we used an outstanding confirmation to send the email,
|
|
|
|
// it's been confirmed at this point.
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if (!$user->email) {
|
|
|
|
$orig = clone($user);
|
|
|
|
$user->email = $email;
|
2015-01-25 11:45:26 +00:00
|
|
|
// Throws exception on failure.
|
|
|
|
$user->updateWithKeys($orig);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// Success!
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->setTempUser($user);
|
|
|
|
$this->showPasswordForm();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function setTempUser(&$user)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
common_ensure_session();
|
|
|
|
$_SESSION['tempuser'] = $user->id;
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function getTempUser()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
common_ensure_session();
|
|
|
|
$user_id = $_SESSION['tempuser'];
|
|
|
|
if ($user_id) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$user = User::getKV($user_id);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function clearTempUser()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
common_ensure_session();
|
|
|
|
unset($_SESSION['tempuser']);
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function showPageNotice()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-23 00:00:01 +00:00
|
|
|
if ($this->msg) {
|
|
|
|
$this->element('div', ($this->success) ? 'success' : 'error', $this->msg);
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('div', 'instructions');
|
2009-01-23 00:00:01 +00:00
|
|
|
if ($this->mode == 'recover') {
|
|
|
|
$this->element('p', null,
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Page notice for password recovery page.
|
2009-11-08 21:45:18 +00:00
|
|
|
_('If you have forgotten or lost your' .
|
2009-01-23 00:00:01 +00:00
|
|
|
' password, you can get a new one sent to' .
|
2009-05-01 12:12:13 +01:00
|
|
|
' the email address you have stored' .
|
2009-01-23 00:00:01 +00:00
|
|
|
' in your account.'));
|
|
|
|
} else if ($this->mode == 'reset') {
|
|
|
|
$this->element('p', null,
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Page notice for password change page.
|
2009-11-08 21:45:18 +00:00
|
|
|
_('You have been identified. Enter a' .
|
2011-01-21 21:45:37 +00:00
|
|
|
' new password below.'));
|
2009-01-23 00:00:01 +00:00
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('div');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function showForm($msg=null)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->msg = $msg;
|
|
|
|
$this->mode = 'recover';
|
|
|
|
$this->showPage();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function showContent()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-23 00:00:01 +00:00
|
|
|
if ($this->mode == 'recover') {
|
|
|
|
$this->showRecoverForm();
|
|
|
|
} else if ($this->mode == 'reset') {
|
|
|
|
$this->showResetForm();
|
|
|
|
}
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function showRecoverForm()
|
|
|
|
{
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-03-22 20:21:32 +00:00
|
|
|
'id' => 'form_password_recover',
|
|
|
|
'class' => 'form_settings',
|
2008-12-23 19:19:07 +00:00
|
|
|
'action' => common_local_url('recoverpassword')));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementStart('fieldset');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Fieldset legend for password recovery page.
|
2009-11-08 21:45:18 +00:00
|
|
|
$this->element('legend', null, _('Password recovery'));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
$this->elementStart('li');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Field label on password recovery page.
|
2009-11-08 21:45:18 +00:00
|
|
|
$this->input('nicknameoremail', _('Nickname or email address'),
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->trimmed('nicknameoremail'),
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Title for field label on password recovery page.
|
2008-12-23 19:19:07 +00:00
|
|
|
_('Your nickname on this server, ' .
|
|
|
|
'or your registered email address.'));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2009-06-11 15:32:16 +01:00
|
|
|
$this->element('input', array('name' => 'recover',
|
|
|
|
'type' => 'hidden',
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Field label on password recovery page.
|
2009-06-11 15:32:16 +01:00
|
|
|
'value' => _('Recover')));
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Button text on password recovery page.
|
|
|
|
$this->submit('recover', _m('BUTTON','Recover'));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('form');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function title()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-23 00:00:01 +00:00
|
|
|
switch ($this->mode) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Title for password recovery page in password reset mode.
|
2009-01-23 00:00:01 +00:00
|
|
|
case 'reset': return _('Reset password');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Title for password recovery page in password recover mode.
|
2009-01-23 00:00:01 +00:00
|
|
|
case 'recover': return _('Recover password');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Title for password recovery page in email sent mode.
|
2009-01-23 00:00:01 +00:00
|
|
|
case 'sent': return _('Password recovery requested');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Title for password recovery page in password saved mode.
|
2011-02-16 23:39:53 +00:00
|
|
|
case 'saved': return _('Password saved');
|
2009-01-23 00:00:01 +00:00
|
|
|
default:
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Title for password recovery page when an unknown action has been specified.
|
2009-01-23 00:00:01 +00:00
|
|
|
return _('Unknown action');
|
|
|
|
}
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function showPasswordForm($msg=null)
|
|
|
|
{
|
|
|
|
$this->msg = $msg;
|
|
|
|
$this->mode = 'reset';
|
|
|
|
$this->showPage();
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function showResetForm()
|
|
|
|
{
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-03-22 20:21:32 +00:00
|
|
|
'id' => 'form_password_change',
|
|
|
|
'class' => 'form_settings',
|
2008-12-23 19:19:07 +00:00
|
|
|
'action' => common_local_url('recoverpassword')));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementStart('fieldset');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Fieldset legend for password reset form.
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->element('legend', null, _('Password change'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
$this->elementStart('li');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Field label for password reset form.
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->password('newpassword', _('New password'),
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Title for field label for password reset form.
|
|
|
|
_('6 or more characters, and do not forget it!'));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Field label for password reset form where the password has to be typed again.
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->password('confirm', _('Confirm'),
|
2011-06-15 12:24:53 +01:00
|
|
|
// TRANS: Title for field label for password reset form where the password has to be typed again.
|
2011-01-21 21:45:37 +00:00
|
|
|
_('Same as password above.'));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Button text for password reset form.
|
|
|
|
$this->submit('reset', _m('BUTTON','Reset'));
|
2009-03-22 20:21:32 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('form');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function recoverPassword()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$nore = $this->trimmed('nicknameoremail');
|
2011-06-07 16:22:19 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$nore) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Form instructions for password recovery form.
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->showForm(_('Enter a nickname or email address.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-07 16:22:19 +01:00
|
|
|
try {
|
|
|
|
User::recoverPassword($nore);
|
|
|
|
$this->mode = 'sent';
|
2015-05-30 22:29:16 +01:00
|
|
|
if (common_is_email($nore) && common_config('site', 'fakeaddressrecovery')) {
|
|
|
|
// TRANS: User notification when recovering password by giving email address,
|
|
|
|
// regardless if the mail was sent or not (to hide registered email status).
|
|
|
|
$this->msg = _('If the email address you provided was found in the database, a recovery mail with instructions has been sent there.');
|
|
|
|
} else {
|
|
|
|
// TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
|
|
|
|
$this->msg = _('Instructions for recovering your password ' .
|
|
|
|
'have been sent to the email address registered to your ' .
|
|
|
|
'account.');
|
|
|
|
}
|
2011-06-07 16:22:19 +01:00
|
|
|
$this->success = true;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->success = false;
|
2011-12-02 20:47:35 +00:00
|
|
|
$this->msg = $e->getMessage();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2011-12-02 20:47:35 +00:00
|
|
|
$this->showPage();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
function resetPassword()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2011-03-22 15:54:23 +00:00
|
|
|
// CSRF protection
|
2008-12-23 19:19:07 +00:00
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Form validation error message.
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->showForm(_('There was a problem with your session token. Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
$user = $this->getTempUser();
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if (!$user) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Client error displayed when trying to reset as password without providing a user.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Unexpected password reset.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$newpassword = $this->trimmed('newpassword');
|
|
|
|
$confirm = $this->trimmed('confirm');
|
|
|
|
|
|
|
|
if (!$newpassword || strlen($newpassword) < 6) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Reset password form validation error message.
|
2010-11-01 13:44:37 +00:00
|
|
|
$this->showPasswordForm(_('Password must be 6 characters or more.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($newpassword != $confirm) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Reset password form validation error message.
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->showPasswordForm(_('Password and confirmation do not match.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// OK, we're ready to go
|
2015-12-30 16:53:43 +00:00
|
|
|
$user->setPassword($newpassword);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->clearTempUser();
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if (!common_set_user($user->nickname)) {
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Server error displayed when something does wrong with the user object during password reset.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('Error setting user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
common_real_login(true);
|
|
|
|
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->mode = 'saved';
|
2011-01-21 21:45:37 +00:00
|
|
|
// TRANS: Success message for user after password reset.
|
2009-01-23 00:00:01 +00:00
|
|
|
$this->msg = _('New password successfully saved. ' .
|
|
|
|
'You are now logged in.');
|
|
|
|
$this->success = true;
|
|
|
|
$this->showPage();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2011-04-18 21:19:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A local menu
|
|
|
|
*
|
|
|
|
* Shows different login/register actions.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showLocalNav()
|
|
|
|
{
|
|
|
|
$nav = new LoginGroupNav($this);
|
|
|
|
$nav->show();
|
|
|
|
}
|
2008-06-24 22:50:33 +01:00
|
|
|
}
|