PHP Class Horde_Core_Auth_Signup_Null, horde

Copyright 2010-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: Michael Slusarz ([email protected])
Inheritance: extends Horde_Core_Auth_Signup_Base
Datei anzeigen Open project: horde/horde

Public Methods

Method Description
exists ( string $user ) : boolean Checks if a user exists in the system.
getQueuedSignup ( string $username ) : object Get a user's queued signup information.
getQueuedSignups ( ) : array Get the queued information for all pending signups.
newSignup ( string $name ) : object Return a new signup object.
removeQueuedSignup ( string $username ) Remove a queued signup.

Protected Methods

Method Description
_queueSignup ( mixed $info ) Queues the user's submitted registration info for later admin approval.

Method Details

_queueSignup() protected method

Queues the user's submitted registration info for later admin approval.
protected _queueSignup ( mixed $info )
$info mixed Reference to array of parameters to be passed to hook.

exists() public method

Checks if a user exists in the system.
public exists ( string $user ) : boolean
$user string The user to check.
return boolean True if the user exists.

getQueuedSignup() public method

Get a user's queued signup information.
public getQueuedSignup ( string $username ) : object
$username string The username to retrieve the queued info for.
return object The object for the requested signup.

getQueuedSignups() public method

Get the queued information for all pending signups.
public getQueuedSignups ( ) : array
return array An array of objects, one for each signup in the queue.

newSignup() public method

Return a new signup object.
public newSignup ( string $name ) : object
$name string The signups's name.
return object A new signup object.

removeQueuedSignup() public method

Remove a queued signup.
public removeQueuedSignup ( string $username )
$username string The user to remove from the signup queue.