zainiafzan/yii2-dropzone

Dropzone Js for Yii2 Widget

Installs: 2 620

Dependents: 2

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

dev-master 2014-03-13 22:12 UTC

This package is not auto-updated.

Last update: 2025-03-29 17:59:53 UTC


README

Dropzone Js for Yii2 Widget

Installation

The preferred way to install this extension is through composer.

Either run

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

or add

"zainiafzan/yii2-dropzone": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?= \zainiafzan\widget\Dropzone::widget([
		'options' => [
			'addRemoveLinks' => true,
		],
		'clientEvents' => [
			'complete' => "function(file){console.log(file)}",
			'removedfile' => "function(file){alert(file.name + ' is removed')}",
			'sending' => "function(file, xhr, formData){formData.append('".Yii::$app->request->csrfParam."','".Yii::$app->request->getCsrfToken() ."')}"
		]
	])?>```