Copyright 2003-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://opensource.org/licenses/lgpl-2.1.php
Author: Marko Djukic (marko@oblo.com)
Inheritance: extends Horde_Form
Beispiel #1
0
Horde_Registry::appInit('horde', array('authentication' => 'none'));
$auth = $injector->getInstance('Horde_Core_Factory_Auth')->create();
// Make sure signups are enabled before proceeding
if ($conf['signup']['allow'] !== true || !$auth->hasCapability('add')) {
    $notification->push(_("User Registration has been disabled for this site."), 'horde.error');
    $registry->getServiceLink('login')->redirect();
}
try {
    $signup = $injector->getInstance('Horde_Core_Auth_Signup');
} catch (Horde_Exception $e) {
    Horde::log($e, 'ERR');
    $notification->push(_("User Registration is not properly configured for this site."), 'horde.error');
    $registry->getServiceLink('login')->redirect();
}
$vars = $injector->getInstance('Horde_Variables');
$formsignup = new Horde_Core_Auth_Signup_Form($vars);
if ($formsignup->validate()) {
    $formsignup->getInfo($vars, $info);
    $error = $success_message = null;
    if ($info instanceof PEAR_Error) {
        $notification->push(sprintf(_("There was a problem adding \"%s\" to the system: %s"), $vars->get('user_name'), $info->getMessage()), 'horde.error');
    } else {
        if (!$conf['signup']['approve']) {
            /* User can sign up directly, no intervention necessary. */
            try {
                $signup->addSignup($info);
                $success_message = sprintf(_("Added \"%s\" to the system. You can log in now."), $info['user_name']);
            } catch (Horde_Exception $e) {
                $error = $e;
            }
        } elseif ($conf['signup']['approve']) {
Beispiel #2
0
 * @author Duck <*****@*****.**>
 */
require_once __DIR__ . '/tabs.php';
$auth = $injector->getInstance('Horde_Core_Factory_Auth')->create();
// Make sure signups are enabled before proceeding
if ($conf['signup']['allow'] !== true || !$auth->hasCapability('add')) {
    $notification->push(_("User Registration has been disabled for this site."), 'horde.error');
    throw new Horde_Exception_AuthenticationFailure();
}
$signup = $injector->getInstance('Horde_Core_Auth_Signup');
if ($signup instanceof PEAR_Error) {
    $notification->push($signup, 'horde.error');
    throw new Horde_Exception_AuthenticationFailure();
}
$vars = Horde_Variables::getDefaultVariables();
$form = new Horde_Core_Auth_Signup_Form($vars);
if ($form->validate()) {
    $form->getInfo(null, $info);
    try {
        if ($conf['signup']['approve']) {
            /* Insert this user into a queue for admin approval. */
            $success = $signup->queueSignup($info);
            $success_message = sprintf(_("Submitted request to add \"%s\" to the system. You cannot log in until your request has been approved."), $info['user_name']);
            $notification->push($success_message, 'horde.success');
        } else {
            /* User can sign up directly, no intervention necessary. */
            $success = $signup->addSignup($info);
            $success_message = sprintf(_("Added \"%s\" to the system. You can log in now."), $info['user_name']);
        }
        $notification->push($success_message, 'horde.success');
        throw new Horde_Exception_AuthenticationFailure();