mztest / yii2-widget-file-upload
A widget for uploading files to your server.
1.0.0
2017-03-01 09:44 UTC
Requires
- bower-asset/blueimp-file-upload: ~9.9
- yiisoft/yii2: ^2.0
- yiisoft/yii2-bootstrap: ^2.0
This package is not auto-updated.
Last update: 2025-03-30 05:22:23 UTC
README
Easily upload any files to your server in Yii Framework 2.0. The extension uses the jQueryFileUpload.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist mztest/yii2-widget-file-upload "*"
or add
"mztest/yii2-widget-file-upload": "*"
to the require section of your composer.json
file.
Usage
-
Set upload action at your controller
public function actions() { return [ 'upload' => [ 'class' => 'mztest\upload\actions\FileUploadAction', ], ]; }
-
simply use it in your code by :
use mztest\upload\FileUpload; <?= $form->field($model, 'floor_image')->widget(FileUpload::className(), [ 'uploadAction' => ['upload'] ]) ?>