Ejemplo n.º 1
0
 public function configure()
 {
     $this->setWidgets(array('password' => new sfWidgetFormInputPassword(array(), array('size' => 30)), 'password1' => new sfWidgetFormInputPassword(array(), array('size' => 30)), 'password2' => new sfWidgetFormInputPassword(array(), array('size' => 30))));
     $this->setValidators(array('password' => new sfValidatorString(array('required' => true)), 'password1' => new sfValidatorRegex(array('pattern' => '/^[a-z0-9]{6,20}$/i')), 'password2' => new sfValidatorString(array(), array('required' => 'You must enter the password twice'))));
     $postValidator = new sfGuardValidatorUser();
     $postValidator->setMessage('invalid', 'Your current password does not match the one you entered.');
     $postValidator->addOption('throw_global_error', true);
     $this->validatorSchema->setPostValidator($postValidator);
     $this->widgetSchema->setLabels(array('password' => 'Current password', 'password1' => 'New password', 'password2' => '(again)'));
     $this->validatorSchema->setPostValidator(new sfValidatorSchemaCompare('password1', sfValidatorSchemaCompare::EQUAL, 'password2'), array(), array('invalid' => 'You must enter the same password twice'));
     $this->validatorSchema->setOption('allow_extra_fields', true);
     $this->validatorSchema->setOption('filter_extra_fields', false);
     $this->widgetSchema->setNameFormat('change_password[%s]');
 }
Ejemplo n.º 2
0
 public function configure()
 {
     $this->setWidgets(array('username' => new sfWidgetFormInput(array(), array('size' => 40)), 'password' => new sfWidgetFormInput(array('type' => 'password'), array('size' => 40)), 'remember' => new sfWidgetFormInputCheckbox()));
     $this->setValidators(array('username' => new sfValidatorString(), 'password' => new sfValidatorString()));
     $postValidator = new sfGuardValidatorUser();
     $postValidator->setMessage('invalid', 'The email and/or password is invalid');
     $postValidator->addOption('throw_global_error', true);
     $this->validatorSchema->setPostValidator($postValidator);
     $this->widgetSchema->setLabels(array('username' => 'Email', 'remember' => 'Remember me'));
     $this->widgetSchema->setNameFormat('signin[%s]');
     $this->validatorSchema->setOption('allow_extra_fields', true);
     $this->validatorSchema->setOption('filter_extra_fields', false);
     $this->setDefaults(array('remember' => true));
 }