PHP code example of bytescommerce / easy-admin-file-upload-field
1. Go to this page and download the library: Download bytescommerce/easy-admin-file-upload-field 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/ */
bytescommerce / easy-admin-file-upload-field example snippets
use BytesCommerce\FileUploadField\Field\FileField;
yield FileField::new('filename', t('File'))
->setBasePath(sprintf('%s', File::BASE_FILE_PATH))
->setUploadDir(sprintf('public/%s', File::BASE_FILE_PATH))
->setUploadedFileNamePattern('[name].[extension]')
->setColumns('col-sm-12 col-md-6');