Releases for sf 1.2
| Version |
License |
API |
Released |
|
0.1.0beta
|
MIT license |
0.1.0beta
|
03/04/2009 |
Releases for sf 1.1
| Version |
License |
API |
Released |
|
0.1.0beta
|
MIT license |
0.1.0beta
|
03/04/2009 |
Changelog for release 0.1.0 - 03/04/2009
- Kris.Wallsmith: Initial release
Other releases
Release 0.1.0 - 03/04/2009
- Kris.Wallsmith: Initial release
Enhance you forms with forms.yml
Your symfony project's forms can be manipulated globally using the forms.yml
configuration file. Once this plugin in installed and enabled you can create a
forms.yml file that looks something like this:
# apps/*/config/forms.yml
forms:
sfGuardFormSignin:
username:
help: Please enter the username you selected during signup.
_post_validator:
invalid: The username and password you entered were not recognized.
widgets:
sfWidgetFormInput:
class: text
validators:
sfValidatorEmail:
invalid: '"%value%" is not a valid email address.'
The effect of this configuration file is just as it appears. Custom error
messages will be added to the sfGuardFormSignin form, the CSS class "text"
will be added to all instances of sfWidgetFormInput, and a custom error
message will be added to all instances of sfValidatorEmail.