JQueryFile Field (download uploadify)
# app/config/config.yml
genemu_form:
file:
swf: /uploadify/uploadify.swf
genemu_upload:
resource: "@GenemuFormBundle/Resources/config/routing/upload.xml"
<?php
// ...
public function buildForm(FormBuilder $builder, array $options)
{
$builder
// ...
->add('download', 'genemu_jqueryfile')
->add('multiple_download', 'genemu_jqueryfile', array(
'multiple' => true
))
->add('auto_download', 'genemu_jqueryfile', array(
'configs' => array(
'auto' => true
)
))
->add('auto_multiple_download', 'genemu_jqueryfile', array(
'multiple' => true,
'configs' => array(
'auto' => true
)
));
}