|
Revision 75, 320 bytes
(checked in by nperriault, 5 months ago)
|
[1.1]:
- Companies and people modules migrated, with according form classes and templates, and functional test suite
- Enhanced SymfoniansTestBrowser?
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
class SigninForm extends sfGuardFormSignin |
|---|
| 7 |
{ |
|---|
| 8 |
|
|---|
| 9 |
* Form configuration |
|---|
| 10 |
* |
|---|
| 11 |
*/ |
|---|
| 12 |
public function configure() |
|---|
| 13 |
{ |
|---|
| 14 |
parent::configure(); |
|---|
| 15 |
|
|---|
| 16 |
$this->widgetSchema['remember'] = new sfWidgetFormInputCheckbox(); |
|---|
| 17 |
$this->validatorSchema['remember'] = new sfValidatorPass(); |
|---|
| 18 |
} |
|---|
| 19 |
} |
|---|
| 20 |
|
|---|