PHP code example of wwwision / form-multifileupload
1. Go to this page and download the library: Download wwwision/form-multifileupload library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wwwision / form-multifileupload example snippets
public function build(array $factorySpecificConfiguration, $presetName) {
$formConfiguration = $this->getPresetConfiguration($presetName);
$form = new FormDefinition('someForm', $formConfiguration);
$page1 = $form->createPage('page1');
// ...
$files = $page1->createElement('files', 'Wwwision.Form.MultiFileUpload:MultiFileUpload');
$files->setLabel('Some Files');
return $form;
}