PHPackages                             boundstate/yii2-plupload - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. boundstate/yii2-plupload

ActiveYii2-extension[Framework](/categories/framework)

boundstate/yii2-plupload
========================

The plupload extension for the Yii framework

v0.0.2(10y ago)25.6k↓50%5[1 PRs](https://github.com/boundstate/yii2-plupload/pulls)1MITPHP

Since Aug 10Pushed 8y ago2 watchersCompare

[ Source](https://github.com/boundstate/yii2-plupload)[ Packagist](https://packagist.org/packages/boundstate/yii2-plupload)[ RSS](/packages/boundstate-yii2-plupload/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (1)

yii2-plupload
=============

[](#yii2-plupload)

A [plupload](http://www.plupload.com/) extension for the Yii2 framework

Installation
------------

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist boundstate/yii2-plupload "*"
```

or add

```
"boundstate/yii2-plupload": "*"

```

to the require section of your `composer.json` file.

Usage
-----

[](#usage)

### Action

[](#action)

```
public function actions() {
    return [
        'upload' => [
            'class' => PluploadAction::className(),
            'onComplete' => function ($filename, $params) {
                // Do something with file
            }
        ],
    ];
}
```

### Widget

[](#widget)

```
