Skip to content

Instantly share code, notes, and snippets.

@hailwood
Created November 18, 2015 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hailwood/65f2b22a3d1c1675f2ae to your computer and use it in GitHub Desktop.
Save hailwood/65f2b22a3d1c1675f2ae to your computer and use it in GitHub Desktop.
<?php
//...
//in my form submit handler
/** @var FileField $f */
$f = $form->getField('Bla');
$f->setFolderName('the/place/i/want/to/store');
$file = $f->getUpload()->getFile();
$file->setName("MyFile.".$file->getExtension());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment