Guest User

Untitled

a guest
Jan 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. class addPhotoForm extends BaseForm
  3. {
  4. public function configure()
  5. {
  6. $subForm = new sfForm();
  7. for($i = 0; $i < 5; $i++):
  8. $form = new PhotoForm();
  9.  
  10. $subForm->embedForm($i, $form);
  11. endfor;
  12. $this->embedForm('photos', $subForm);
  13.  
  14. $this->widgetSchema->setNameFormat('photos[%s]');
  15. }
  16. }
Add Comment
Please, Sign In to add comment