PHP code example of coldtrick / hypedropzone
1. Go to this page and download the library: Download coldtrick/hypedropzone 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/ */
coldtrick / hypedropzone example snippets
echo elgg_view('input/dropzone', array(
'name' => 'upload_guids',
'accept' => "image/*",
'max' => 25,
'multiple' => true,
'container_guid' => $container_guid, // optional file container
'subtype' => $subtype, // subtype of the file entities to be created
// see the view for more options
));
get_input('upload_guids');