Copyright (c) 2008 Patricio Mac Adden.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Overview
Generate validators automatically from schema.yml
Installation
symfony plugin-install http://plugins.symfony-project.com/sfGenerateValidatorPlugin
Clear cache
symfony cc
Usage
supose we have this schema:
propel:
person:
id:
name:
type: varchar(256)
required: true
birth_date:
type: timestamp
required: true
_uniques:
index: [name]
and we want to validate edit action.
The next commando will create a validator for edit action:
symfony propel-generate-validator frontend person Person
the output will be:
fillin:
enabled: true
fields:
person{name}:
required:
msg: name is required.
sfPropelUniqueValidator:
class: Person
column: name
unique_error: name already exists.
person{birth_date}:
required:
msg: birth date is required.
if we want to validate another action, let's say create:
symfony propel-generate-validator frontend person Person create
the output will be the same, but in another yml file.
Author
Patricio Mac Adden