I have experience in core PHP, but not in Symfony. I'm using OrangeHRM for the first time and I've tried to add some fields in candidate form, but that is not showing up in the database. I follow this article, but no success yet.
Does anyone know what am I doing wrong?
You done perfect.
But you need to add validation for all fields. Add following code in $validators array.
'source' => new sfValidatorString(array('required' => false)),
'location' => new sfValidatorString(array('required' => false)),
'salexpected' => new sfValidatorString(array('required' => false)),
after that your data is inserted in job_candidate table.
I hope you will get solution.