2017 © Pedro Peláez
 

yii2-extension yii2-dropzone

DropzoneJs Extention for Yii2

image

boliver20/yii2-dropzone

DropzoneJs Extention for Yii2

  • Friday, May 25, 2018
  • by boliver20
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 24 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Yii2 Dropzone

DropzoneJs Extention for Yii2, (*1)

A port of DropzoneJs for Yii2 Framework, (*2)

Installation

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

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

or add, (*5)

"boliver20/yii2-dropzone": "*"

to the require section of your composer.json file., (*6)

Usage

Once the extension is installed, simply use it in your code by to create Ajax upload area :, (*7)

echo \boliver\DropZone::widget();

To pass options : (More details at dropzonejs official docs ), (*8)

echo \boliver\DropZone::widget([
       'options' => [
           'maxFilesize' => '2',
       ],
       'clientEvents' => [
           'complete' => "function(file){console.log(file)}",
           'removedfile' => "function(file){alert(file.name + ' is removed')}"
       ],
   ]);

Example of upload method :, (*9)

public function actionUpload()
{
    $fileName = 'file';
    $uploadPath = './files';

    $file = \yii\web\UploadedFile::getInstanceByName($fileName);

    //Print file data
    //print_r($file);

    if ($file && $file->saveAs($uploadPath . '/' . $file->name)) {
        //Now save file data to database

        echo \yii\helpers\Json::encode($file);
    }

    return false;
}

The Versions

25/05 2018

dev-master

9999999-dev

DropzoneJs Extention for Yii2

  Sources   Download

MIT

The Requires

 

by B. Oliver

extension yii2 upload dropzone

25/05 2018

2.0

2.0.0.0

DropzoneJs Extention for Yii2

  Sources   Download

MIT

The Requires

 

by B. Oliver

extension yii2 upload dropzone

09/11 2015

v1.0.1

1.0.1.0

DropzoneJs Extention for Yii2

  Sources   Download

MIT

The Requires

 

extension yii2 upload dropzone

23/10 2014

v1.0.0

1.0.0.0

DropzoneJs Extention for Yii2

  Sources   Download

MIT

extension yii2 upload dropzone