user = $extra['user']; $this->fields['first_name'] = new Pluf_Form_Field_Varchar( array('required' => false, 'label' => __('First name'), 'initial' => $this->user->first_name, 'widget_attrs' => array( 'maxlength' => 50, 'size' => 15, ), )); $this->fields['last_name'] = new Pluf_Form_Field_Varchar( array('required' => true, 'label' => __('Last name'), 'initial' => $this->user->last_name, 'widget_attrs' => array( 'maxlength' => 50, 'size' => 20, ), )); $this->fields['password'] = new Pluf_Form_Field_Varchar( array('required' => false, 'label' => __('Your password'), 'initial' => '', 'widget' => 'Pluf_Form_Widget_PasswordInput', 'help_text' => Pluf_Template::markSafe(__('Leave blank if you do not want to change your password.').'
'.__('Your password must be hard for other people to find it, but easy for you to remember.')), 'widget_attrs' => array( 'maxlength' => 50, 'size' => 15, ), )); $this->fields['password2'] = new Pluf_Form_Field_Varchar( array('required' => false, 'label' => __('Confirm your password'), 'initial' => '', 'widget' => 'Pluf_Form_Widget_PasswordInput', 'widget_attrs' => array( 'maxlength' => 50, 'size' => 15, ), )); } /** * Save the model in the database. * * @param bool Commit in the database or not. If not, the object * is returned but not saved in the database. * @return Object Model with data set from the form. */ function save($commit=true) { if (!$this->isValid()) { throw new Exception(__('Cannot save the model from an invalid form.')); } unset($this->cleaned_data['password2']); if (strlen($this->cleaned_data['password']) == 0) { unset($this->cleaned_data['password']); } $this->user->setFromFormData($this->cleaned_data); if ($commit) { $this->user->update(); } return $this->user; } function clean_last_name() { $last_name = trim($this->cleaned_data['last_name']); if ($last_name == mb_strtoupper($last_name)) { return mb_convert_case(mb_strtolower($last_name), MB_CASE_TITLE, 'UTF-8'); } return $last_name; } function clean_first_name() { $first_name = trim($this->cleaned_data['first_name']); if ($first_name == mb_strtoupper($first_name)) { return mb_convert_case(mb_strtolower($first_name), MB_CASE_TITLE, 'UTF-8'); } return $first_name; } /** * Check to see if the 2 passwords are the same. */ public function clean() { if (!isset($this->errors['password']) && !isset($this->errors['password2'])) { $password1 = $this->cleaned_data['password']; $password2 = $this->cleaned_data['password2']; if ($password1 != $password2) { throw new Pluf_Form_Invalid(__('The passwords do not match. Please give them again.')); } } return $this->cleaned_data; } }