widgetSchema['time_start'] = new sfWidgetFormRichDateTime(); $this->validatorSchema['time_start'] = new sfValidatorRichDateTime(); $this->widgetSchema['time_end'] = new sfWidgetFormRichDateTime(); $this->validatorSchema['time_end'] = new sfValidatorRichDateTime(); $this->widgetSchema['image'] = new sfWidgetFormInputFileEditable(array( 'file_src' => '/uploads/items/preview/'.$this->getObject()->image, 'is_image' => true, 'with_delete' => false )); $this->validatorSchema['image'] = new sfValidatorFile(array( 'required' => false, 'mime_types' => 'web_images', )); } }