'group_name' => array('label' => 'groups.fields.name', 'validation' => array('required', 'min_length' => array(3))),
Il campo "groups.fields.name" deve contenere almeno 3 caratteri
- Best: create a method that sets (hashes) the password on the model
public function password($pass) { // very simplified example... $this->password = sha1($pass); }
It looks like you're new here. If you want to get involved, click one of these buttons!