upgrade
This commit is contained in:
27
main/auth/resend_confirmation_mail.php
Normal file
27
main/auth/resend_confirmation_mail.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/* For license terms, see /license.txt */
|
||||
|
||||
require_once __DIR__.'/../inc/global.inc.php';
|
||||
|
||||
// Build the form
|
||||
$form = new FormValidator('resend');
|
||||
$form->addHeader(get_lang('ReSendConfirmationMail'));
|
||||
$form->addText('user', get_lang('UserName'), true);
|
||||
$form->addButtonSend(get_lang('Send'));
|
||||
|
||||
if ($form->validate()) {
|
||||
$values = $form->exportValues();
|
||||
$user = UserManager::getManager()->findUserByUsername($values['user']);
|
||||
if ($user) {
|
||||
UserManager::sendUserConfirmationMail($user);
|
||||
} else {
|
||||
Display::addFlash(Display::return_message(get_lang('UserDoesNotExist')));
|
||||
}
|
||||
|
||||
header('Location: '.api_get_path(WEB_PATH));
|
||||
exit;
|
||||
}
|
||||
|
||||
$tpl = new Template(null);
|
||||
$tpl->assign('content', $form->toHtml());
|
||||
$tpl->display_one_col_template();
|
||||
Reference in New Issue
Block a user