UsersIndex

Summary
UsersIndex
AuthorJaybill McCarthy
Licensehttp://communit.as/docs/license
See AlsoCts_Db_Table_Abstract
Instance Variables
$_nameThe name of the table or view to interact with in the data source.
$_primaryThe primary key of the table or view to interact with in the data source.
Instance Methods
fetchByUsernameRetrieves all data about one particular user from the database.
userExistsVerifies the existence of a user in the database.

Author

Jaybill McCarthy

Instance Variables

$_name

protected $_name

The name of the table or view to interact with in the data source.

$_primary

protected $_primary

The primary key of the table or view to interact with in the data source.

Instance Methods

fetchByUsername

public function fetchByUsername($username)

Retrieves all data about one particular user from the database.

Arguments

usernameThe username of the user to fetch.

Returns: Zend_Db_Table_Row

userExists

public function userExists($username)

Verifies the existence of a user in the database.

Arguments

usernameThe username of the user for which to verify its existence.

Returns: boolean

protected $_name
The name of the table or view to interact with in the data source.
protected $_primary
The primary key of the table or view to interact with in the data source.
public function fetchByUsername($username)
Retrieves all data about one particular user from the database.
public function userExists($username)
Verifies the existence of a user in the database.
Close