* @version SVN: $Id: sfDoctrineFormTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $ */ class DemandJobForm extends AdminDemandJobForm { public function configure() { parent::configure(); $this->widgetSchema['profile_id'] = new sfWidgetFormInputHidden(); $this->widgetSchema['style_id'] = new sfWidgetFormInputHidden(); $this->validatorSchema['name']->setOption('max_length', 15); //commonFormFunctions::setJqUiAdvanceFormater($this); } public function bind($taintedValues, $taintedFiles = null) { $taintedValues['style_id'] = 1; parent::bind($taintedValues, $taintedFiles); } }