<?php
// phpcs:disable PSR1.Files.SideEffects
use fileuploader\server\FileUploader;
use phpformbuilder\Form;
use phpformbuilder\Validator\Validator;
$root = rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR);
/* =============================================
start session and include form class
============================================= */
session_start();
include_once $root . '/phpformbuilder/Form.php';
// include the fileuploader
include_once $root . '/phpformbuilder/plugins/fileuploader/server/class.fileuploader.php';
/* =============================================
Delete all uploaded files on load to keep my server clean
(Remove this if you don't want to delete uploaded files)
============================================= */
function cleanDir($dir)
{
$files = glob($dir); // get all file names present in folder
foreach ($files as $file) { // iterate files
if (is_file($file) && basename($file) != 'art-creative-metal-creativity.jpg' && (time() - filectime($file) > 3600)) {
// if file is 1 hour (3600 seconds) old then delete it
unlink($file); // delete the file
}
}
}
cleanDir($root . '/file-uploads/images/thumbs/lg/*');
cleanDir($root . '/file-uploads/images/thumbs/md/*');
cleanDir($root . '/file-uploads/images/thumbs/sm/*');
cleanDir($root . '/file-uploads/images/*');
cleanDir($root . '/file-uploads/*');
// copy the demo image in file-uploads if it's been deleted by some user
if ($_SERVER['SERVER_NAME'] == 'www.phpformbuilder.pro' && !file_exists($root . '/file-uploads/images/art-creative-metal-creativity.jpg')) {
copy($root . '/assets/images/art-creative-metal-creativity.jpg', $root . '/file-uploads/images/art-creative-metal-creativity.jpg');
}
$form = new Form('fileupload-test-form', 'horizontal', 'novalidate', 'uikit');
$form->setMode('development');
/* ==================================================
Single file upload
================================================== */
$fileUpload_config = array(
'upload_dir' => '../../../../../file-uploads/', // the directory to upload the files. relative to phpformbuilder/plugins/fileuploader/default/php/ajax_upload_file.php
'limit' => 1, // max. number of files
'file_max_size' => 2, // each file's maximal size in MB {null, Number}
'extensions' => ['pdf', 'doc', 'docx', 'xls', 'xlsx', 'txt'],
'debug' => true // log the result in the browser's console and shows an error text on the page if the uploader fails to parse the json result.
);
$form->startFieldset('Single file upload', '', 'class=uk-margin-bottom');
$form->addHelper('Accepted File Types : .pdf, .doc[x], .xls[x], .txt', 'single-file', 'after');
$form->addFileUpload('single-file', '', 'Attach a file', '', $fileUpload_config);
$form->endFieldset();
/* ==================================================
Multiple files upload
================================================== */
$fileUpload_config = array(
'upload_dir' => '../../../../../file-uploads/', // the directory to upload the files. relative to phpformbuilder/plugins/fileuploader/default/php/ajax_upload_file.php
'limit' => 3, // max. number of files
'file_max_size' => 2, // each file's maximal size in MB {null, Number}
'extensions' => ['pdf', 'doc', 'docx', 'xls', 'xlsx', 'txt'],
'debug' => true // log the result in the browser's console and shows an error text on the page if the uploader fails to parse the json result.
);
$form->startFieldset('Multiple files upload', '', 'class=uk-margin-bottom');
$form->addHelper('3 files maximum. Accepted File Types : .pdf, .doc[x], .xls[x], .txt', 'multiple-files', 'after');
$form->addFileUpload('multiple-files', '', 'Upload your documents', '', $fileUpload_config);
$form->endFieldset();
/* ==================================================
Images upload
================================================== */
$fileUpload_config = array(
'xml' => 'image-upload', // the uploader's config in phpformbuilder/plugins-config/fileuploader.xml
'uploader' => 'ajax_upload_file.php', // the uploader file in phpformbuilder/plugins/fileuploader/[xml]/php
'upload_dir' => '../../../../../file-uploads/images/', // the directory to upload the files. relative to [plugins dir]/fileuploader/image-upload/php/ajax_upload_file.php
'limit' => 3, // max. number of files
'file_max_size' => 2, // each file's maximal size in MB {null, Number}
'extensions' => ['jpg', 'jpeg', 'png', 'gif'], // allowed extensions
'thumbnails' => true, // the thumbs directories must exist. thumbs config. is done in phpformbuilder/plugins/fileuploader/image-upload/php/ajax_upload_file.php
'editor' => true, // allows the user to crop/rotate the uploaded image
'width' => 960, // the uploaded image maximum width
'height' => 720, // the uploaded image maximum height
'crop' => false,
'debug' => true // log the result in the browser's console and shows an error text on the page if the uploader fails to parse the json result.
);
$form->startFieldset('Multiple images upload with resizing, thumbnails and image editor (crop/rotate)', '', 'class=uk-margin-bottom');
$form->addHtml('<p>The uploader resizes the uploaded image (960px * 720px), then generates large, medium & small thumbnails for each uploaded image.</p>');
$form->addHelper('3 files max. Accepted File Types : .jp[e]g, .png, .gif<br>Click on the uploaded preview image to crop/rotate.', 'uploaded-images');
$form->addFileUpload('uploaded-images', '', 'Upload up to 3 images', '', $fileUpload_config);
$form->endFieldset();
/* ==================================================
Prefilled upload with existing image
================================================== */
$current_file = ''; // default empty
$current_file_path = $root . '/file-uploads/images/';
$current_file_name = 'art-creative-metal-creativity.jpg';
if (file_exists($current_file_path . $current_file_name)) {
$current_file_size = filesize($current_file_path . $current_file_name);
$current_file_type = mime_content_type($current_file_path . $current_file_name);
$current_file = array(
'name' => $current_file_name,
'size' => $current_file_size,
'type' => $current_file_type,
'file' => '/file-uploads/images/' . $current_file_name, // url of the file
'data' => array(
'listProps' => array(
'file' => $current_file_name
)
)
);
}
$fileUpload_config = array(
'xml' => 'image-upload', // the thumbs directories must exist
'uploader' => 'ajax_upload_file.php', // the uploader file in phpformbuilder/plugins/fileuploader/[xml]/php
'upload_dir' => '../../../../../file-uploads/images/', // the directory to upload the files. relative to [plugins dir]/fileuploader/image-upload/php/ajax_upload_file.php
'limit' => 1, // max. number of files
'file_max_size' => 2, // each file's maximal size in MB {null, Number}
'extensions' => ['jpg', 'jpeg', 'png'],
'thumbnails' => true,
'editor' => true,
'width' => 960,
'height' => 720,
'crop' => false,
'debug' => true
);
$form->startFieldset('Prefilled upload with existing image', '', 'class=uk-margin-bottom');
$form->addHelper('Accepted File Types : Accepted File Types : .jp[e]g, .png, .gif', 'prefilled-uploader', 'after');
$form->addFileUpload('prefilled-uploader', '', 'Your image', 'required', $fileUpload_config, $current_file);
$form->endFieldset();
/*=====================================
= Drag and drop =
=====================================*/
$fileUpload_config = array(
'xml' => 'drag-and-drop',
'upload_dir' => '../../../../../file-uploads/', // the directory to upload the files. relative to phpformbuilder/plugins/fileuploader/default/php/ajax_upload_file.php
'limit' => 2, // max. number of files
'file_max_size' => 2, // each file's maximal size in MB {null, Number}
'extensions' => ['pdf', 'doc', 'docx', 'xls', 'xlsx', 'txt'],
'debug' => true // log the result in the browser's console and shows an error text on the page if the uploader fails to parse the json result.
);
$form->startFieldset('Drag and drop', '', 'class=uk-margin-bottom');
$form->addHelper('Accepted File Types : .pdf, .doc[x], .xls[x], .txt', 'drag-and-drop', 'after');
$form->addFileUpload('drag-and-drop', '', 'Drag and drop', '', $fileUpload_config);
$form->endFieldset();
// real time validation
$form->addPlugin('formvalidation', '#fileupload-test-form');
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>UIkit File Upload Form - How to create PHP forms easily</title>
<meta name="description" content="UIkit Form Generator - how to create a File Upload with Php Form Builder">
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/uikit-forms/fileupload-test-form.php" />
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<!-- Font awesome icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/solid.css" integrity="sha384-Tv5i09RULyHKMwX0E8wJUqSOaXlyu3SQxORObAI08iUwIalMmN5L6AvlPX2LMoSE" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/fontawesome.css" integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<?php $form->printIncludes('css'); ?>
<style>
form fieldset {
background: #fafafa;
padding: 0 20px;
margin-bottom: 60px;
}
fieldset legend {
padding: 10px 20px;
color: #fff !important;
background: #3E5DC2;
}
</style>
</head>
<body>
<h1 class="uk-text-center">Php Form Builder - File Upload Form<br><small>Upload documents or images</small></h1>
<div class="uk-container" style="min-width:70vw;">
<div class="uk-text-center uk-margin-large-bottom">
<a href="https://www.phpformbuilder.pro/documentation/javascript-plugins.php#fileuploader" class="uk-button uk-button-default uk-button-small"><strong>File uploader plugin</strong> - documentation here <i class="fas fa-arrow-right uk-margin-left"></i></a>
</div>
<?php
$form->render();
?>
</div>
<!-- UIkit JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<!-- jQuery - required for the fileuploader plugin -->
<script src=" https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"> </script>
<?php
$form->printIncludes('js');
$form->printJsCode();
?>
<script>
// The prefilled uploader real time validation has to be done on the "real" hidden field
// named 'prefilled-uploader'
// not on the 'uploader-prefilled-uploader' generated by the fileuploader plugin
var fvCallback = function() {
var form = forms['fileupload-test-form'];
form.fv.addField(
'prefilled-uploader', {
validators: {
notEmpty: {
message: 'file is required'
}
}
}
).removeField('uploader-prefilled-uploader');
};
</script>
</body>
</html>