PHP Class Model_A1_User_Mango

Remember to validate data before saving to database. Some validation rules are already taken care of by the _fields declaration. Min_length and max_length are set for both username and password, both these fields are already required, and the username will be checked on uniqueness. However, you might want to add additional rules to validate if username is alphanumeric for example.
Inheritance: extends Mango
Afficher le fichier Open project: wouterrr/a1

Protected Properties

Свойство Type Description
$_fields
$_name Specify config name so password gets hashed correctly (with the right salt pattern) when set in user

Méthodes publiques

Méthode Description
create ( $options = [] )
hash ( $password )
update ( $criteria = [], $options = [] )

Method Details

create() public méthode

public create ( $options = [] )

hash() public méthode

public hash ( $password )

update() public méthode

public update ( $criteria = [], $options = [] )

Property Details

$_fields protected_oe property

protected $_fields

$_name protected_oe property

Specify config name so password gets hashed correctly (with the right salt pattern) when set in user
protected $_name