=== 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 <pmacadden at desarrollo.cespi.unlp.edu.ar>