All Projects → DevGroup-ru → yii2-dropzone

DevGroup-ru / yii2-dropzone

Licence: GPL-3.0 License
This extension provides the Dropzone integration for the Yii2 framework.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to yii2-dropzone

yii2-fileapi-widget
Yii2 FileAPI widget.
Stars: ✭ 51 (+363.64%)
Mutual labels:  yii2, file-upload, yii2-widgets
react-magic-dropzone
✨Magically drag and drop files/links for uploading
Stars: ✭ 11 (+0%)
Mutual labels:  drag-and-drop, upload, dropzone
ngx-dropzone
A highly configurable dropzone component for Angular.
Stars: ✭ 123 (+1018.18%)
Mutual labels:  drag-and-drop, upload, dropzone
vue-simple-upload-component
A simple upload component for Vue.js 2.x
Stars: ✭ 14 (+27.27%)
Mutual labels:  drag-and-drop, upload, file-upload
image-uploader
Simple Drag & Drop image uploader plugin to static forms, without using AJAX
Stars: ✭ 70 (+536.36%)
Mutual labels:  drag-and-drop, upload, file-upload
React Uploady
Modern file uploading - components & hooks for React
Stars: ✭ 372 (+3281.82%)
Mutual labels:  drag-and-drop, upload, file-upload
Dropzone
Dropzone is an easy to use drag'n'drop library. It supports image previews and shows nice progress bars.
Stars: ✭ 16,097 (+146236.36%)
Mutual labels:  drag-and-drop, file-upload, dropzone
Angular File Uploader
Angular file uploader is an Angular 2/4/5/6/7/8/9/10 + file uploader module with Real-Time Progress Bar, Responsive design, Angular Universal Compatibility, localization and multiple themes which includes Drag and Drop and much more.
Stars: ✭ 92 (+736.36%)
Mutual labels:  drag-and-drop, upload, file-upload
yii2-querybuilder
Extension for Yii2 Framework to work with jQuery QueryBuilder
Stars: ✭ 41 (+272.73%)
Mutual labels:  yii2, yii2-widgets
react-drop-n-crop
An opinionated implementation of react-dropzone and react-cropper
Stars: ✭ 17 (+54.55%)
Mutual labels:  drag-and-drop, dropzone
yii2-sweet-submit
sweet sumit using sweetalert
Stars: ✭ 26 (+136.36%)
Mutual labels:  yii2, yii2-widgets
yii2-jwt-tools
An easy way to configure JWT authentication and validation on Yii Framework 2 Projects
Stars: ✭ 22 (+100%)
Mutual labels:  yii2, yii2-framework
react-native-tus-client
React Native client for the tus resumable upload protocol.
Stars: ✭ 38 (+245.45%)
Mutual labels:  upload, file-upload
lolisafe
Blazing fast file uploader and awesome bunker written in node! 🚀
Stars: ✭ 181 (+1545.45%)
Mutual labels:  upload, file-upload
yii2-lock-form
disable the button when form submit
Stars: ✭ 37 (+236.36%)
Mutual labels:  yii2, yii2-widgets
dropzoner
Laravel package for image upload using DropzoneJS
Stars: ✭ 46 (+318.18%)
Mutual labels:  dropzone, dropzonejs
Meteor-Files-Demos
Demos for ostrio:files package
Stars: ✭ 51 (+363.64%)
Mutual labels:  upload, file-upload
rustypaste
A minimal file upload/pastebin service.
Stars: ✭ 102 (+827.27%)
Mutual labels:  upload, file-upload
Yii2-Youtube-Clone
Youtube clone made with Yii2 framework
Stars: ✭ 91 (+727.27%)
Mutual labels:  yii2, yii2-framework
yii2-time-down-counter
Widget for yii2, to start count down timer with a lot of options, This widget build dependence of timeDownCounter JS library
Stars: ✭ 15 (+36.36%)
Mutual labels:  yii2, yii2-widgets

Dropzone Extension for Yii 2

This extension provides the Dropzone integration for the Yii2 framework.

Installation

This extension requires Dropzone

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist devgroup/yii2-dropzone "*"

or add

"devgroup/yii2-dropzone": "*"

to the require section of your composer.json.

General Usage

use devgroup\dropzone\DropZone;

DropZone::widget(
    [
        'name' => 'file', // input name or 'model' and 'attribute'
        'url' => '', // upload url
        'storedFiles' => [], // stores files
        'eventHandlers' => [], // dropzone event handlers
        'sortable' => true, // sortable flag
        'sortableOptions' => [], // sortable options
        'htmlOptions' => [], // container html options
        'options' => [], // dropzone js options
    ]
)

you can also register devgroup\dropzone\UploadAction and devgroup\dropzone\RemoveAction actions in your controller

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].