/yii2-widget-dropzone

This extension provides the Dropzone integration for the Yii2 framework.

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

Dropzone Extension for Yii 2

This extension provides the Dropzone integration for the Yii2 framework.

This fork is based on @DevGroup-ru's extension yii2-dropzone.

Installation

This extension requires Dropzone

The preferred way to install this extension is through composer.

Either run

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

or add

"simialbi/yii2-widget-dropzone": "*"

to the require section of your composer.json.

General Usage

use simialbi\yii2\dropzone\DropZone;

DropZone::widget(
    [
        'name' => 'file', // input name or 'model' and 'attribute'
        'url' => '', // upload url
        'storedFiles' => [], // stores files
        'clientOptions' => [], // dropzone js options
        'clientEvents' => [], // dropzone event handlers
        'options' => [] // container html options
    ]
)

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