diff -r d2af8a210f5d -r 8e4fe6f3337d thd/lib/form/doctrine/base/BaseThdImageForm.class.php --- a/thd/lib/form/doctrine/base/BaseThdImageForm.class.php Wed Jun 01 14:07:43 2016 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,40 +0,0 @@ -setWidgets(array( - 'id' => new sfWidgetFormInputHidden(), - 'film_ref' => new sfWidgetFormDoctrineChoice(array('model' => 'ThdFilm', 'add_empty' => false)), - 'type' => new sfWidgetFormInput(), - 'file' => new sfWidgetFormInput(), - )); - - $this->setValidators(array( - 'id' => new sfValidatorDoctrineChoice(array('model' => 'ThdImage', 'column' => 'id', 'required' => false)), - 'film_ref' => new sfValidatorDoctrineChoice(array('model' => 'ThdFilm')), - 'type' => new sfValidatorInteger(), - 'file' => new sfValidatorString(array('max_length' => 255)), - )); - - $this->widgetSchema->setNameFormat('thd_image[%s]'); - - $this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema); - - parent::setup(); - } - - public function getModelName() - { - return 'ThdImage'; - } - -}