Skip to content

Instantly share code, notes, and snippets.

@mch0lic
Created November 2, 2012 07:39
Show Gist options
  • Save mch0lic/3999304 to your computer and use it in GitHub Desktop.
Save mch0lic/3999304 to your computer and use it in GitHub Desktop.
Validation file:
X\YBundle\Entity\ContactsUpload:
properties:
name:
- NotBlank: ~
file:
- File:
maxSize: 1024k
mimeTypes: 'application/vnd.oasis.opendocument.spreadsheet'
mimeTypesMessage: Please upload valid spreadsheet file!
Annotations:
/**
* @Assert\File(
* maxSize="1M"
* mimeTypes={"application/vnd.ms-excel"},
* mimeTypesMessage="Please upload valid spreadsheet file!"
* )
*/
public $file;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment