2017 © Pedro Peláez
 

yii2-extension yii2-uploadify

Uploadify Widget For Yii2

image

cliff363825/yii2-uploadify

Uploadify Widget For Yii2

  • Tuesday, December 1, 2015
  • by cliff363825
  • Repository
  • 1 Watchers
  • 0 Stars
  • 22 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Uploadify Widget For Yii2

Uploadify Widget For Yii2, (*1)

Installation

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

Either run, (*3)

php composer.phar require --prefer-dist cliff363825/yii2-uploadify "*"

or add, (*4)

"cliff363825/yii2-uploadify": "*"

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

Usage

Once the extension is installed, simply use it in your code by :, (*6)

= \cliff363825\uploadify\UploadifyWidget::widget([
    // use it with a model, uncomment below
    // 'model' => $model,
    // 'attribute' => $model->file,

    // use it without a model, uncomment below
    // 'name' => '...',

    'clientOptions' => [
        'uploader' => Url::to(['uploadify']),
        'multi' => false,
        'onUploadSuccess' => new JsExpression("
function (file, data, response) {
    data = $.parseJSON(data);
    if (data.error == 0) {
        var url = data.url;
        $('ul.image_list').html('
  • \"\"
  • '); $('input[name=\"...\"]').val(url); } else { alert(data.message); } }" ), ], ]); ?>

    For full details on usage, see the documentation., (*7)

    The Versions

    01/12 2015

    dev-master

    9999999-dev

    Uploadify Widget For Yii2

      Sources   Download

    MIT

    The Requires

     

    by Avatar cliff363825

    yii2 uploadify