ResetPasswordForm.class.php 409 Bytes
Newer Older
Яков's avatar
first  
Яков committed
1
2
3
4
5
6
7
8
9
10
<?php

class ResetPasswordForm extends BaseResetPasswordForm
{
  public function configure()
  {
    $this->widgetSchema['email'] = new sfWidgetFormInputText(array('label' => 'Эл. почта'), array('style' => 'width:233px'));
    $this->validatorSchema['email'] = new sfValidatorEmail(array(), array('required' => 'Обязательное поле', 'invalid' => 'Неверный формат'));
  }
}