2017 © Pedro Peláez
 

yii2-extension yii2-upload-behavior

Upload behavior for Yii 2

image

stesi/yii2-upload-behavior

Upload behavior for Yii 2

  • Thursday, December 21, 2017
  • by moccia.f
  • Repository
  • 1 Watchers
  • 0 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 49 Forks
  • 0 Open issues
  • 11 Versions
  • 10 % Grown

The README.md

Upload behavior for Yii 2

This behavior automatically uploads file and fills the specified attribute with a value of the name of the uploaded file. This code is inspired by, but not derived from, https://github.com/yii-dream-team/yii2-upload-behavior., (*1)

Latest Version Software License Build Status Coverage Status Quality Score Total Downloads, (*2)

Installation

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

Either run, (*4)

php composer.phar require --prefer-dist mongosoft/yii2-upload-behavior "*"

or add this code line to the require section of your composer.json file:, (*5)

"mongosoft/yii2-upload-behavior": "*"

Usage

Upload file

Attach the behavior in your model:, (*6)

class Document extends ActiveRecord
{
    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            ['file', 'file', 'extensions' => 'doc, docx, pdf', 'on' => ['insert', 'update']],
        ];
    }

    /**
     * @return \yii\db\ActiveQuery
     */
    public function getCategory()
    {
        return $this->hasOne(Category::className(), [ 'id' => 'id_category' ]);
    }

    /**
     * @inheritdoc
     */
    function behaviors()
    {
        return [
            [
                'class' => UploadBehavior::className(),
                'attribute' => 'file',
                'scenarios' => ['insert', 'update'],
                'path' => '@webroot/upload/docs/{category.id}',
                'url' => '@web/upload/docs/{category.id}',
            ],
        ];
    }
}

Set model scenario in controller action:, (*7)

class Controller extends Controller
{
    public function actionCreate($id)
    {
        $model = $this->findModel($id);
        $model->setScenario('insert'); // Note! Set upload behavior scenario.

        ...
        ...
    }
}

Example view file:, (*8)

<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]); ?>
    <?= $form->field($model, 'image')->fileInput() ?>
    <div class="form-group">
        <?= Html::submitButton('Submit', ['class' => 'btn btn-primary']) ?>
    </div>
<?php ActiveForm::end(); ?>

Upload image and create thumbnails

Attach the behavior in your model:, (*9)

class User extends ActiveRecord
{
    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            ['image', 'image', 'extensions' => 'jpg, jpeg, gif, png', 'on' => ['insert', 'update']],
        ];
    }

    /**
     * @inheritdoc
     */
    public function behaviors()
    {
        return [
            [
                'class' => \mongosoft\file\UploadImageBehavior::className(),
                'attribute' => 'image',
                'scenarios' => ['insert', 'update'],
                'placeholder' => '@app/modules/user/assets/images/userpic.jpg',
                'path' => '@webroot/upload/user/{id}',
                'url' => '@web/upload/user/{id}',
                'thumbs' => [
                    'thumb' => ['width' => 400, 'quality' => 90],
                    'preview' => ['width' => 200, 'height' => 200],
                    'news_thumb' => ['width' => 200, 'height' => 200, 'bg_color' => '000'],
                ],
            ],
        ];
    }
}

Example view file:, (*10)

<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]); ?>
    <div class="form-group">
        <div class="row">
            <div class="col-lg-6">
                <!-- Original image -->
                <?= Html::img($model->getUploadUrl('image'), ['class' => 'img-thumbnail']) ?>
            </div>
            <div class="col-lg-4">
                <!-- Thumb 1 (thumb profile) -->
                <?= Html::img($model->getThumbUploadUrl('image'), ['class' => 'img-thumbnail']) ?>
            </div>
            <div class="col-lg-2">
                <!-- Thumb 2 (preview profile) -->
                <?= Html::img($model->getThumbUploadUrl('image', 'preview'), ['class' => 'img-thumbnail']) ?>
            </div>
        </div>
    </div>
    <?= $form->field($model, 'image')->fileInput(['accept' => 'image/*']) ?>
    <div class="form-group">
        <?= Html::submitButton('Submit', ['class' => 'btn btn-primary']) ?>
    </div>
<?php ActiveForm::end(); ?>

Behavior Options

  • attribute - The attribute which holds the attachment
  • scenarios - The scenarios in which the behavior will be triggered
  • instanceByName - Getting file instance by name, If you use UploadBehavior in RESTfull application and you do not need a prefix of the model name, set the property instanceByName = false, default value is false
  • path - the base path or path alias to the directory in which to save files.
  • url - the base URL or path alias for this file
  • generateNewName - Set true or anonymous function takes the old filename and returns a new name, default value is true
  • unlinkOnSave - If true current attribute file will be deleted, default value is true
  • unlinkOnDelete - If true current attribute file will be deleted after model deletion.

Attention!

It is prefered to use immutable placeholder in url and path options, other words try don't use related attributes that can be changed. There's bad practice. For example:, (*11)

class Track extends ActiveRecord
{
    public function getArtist()
    {
        return $this->hasOne(Artist::className(), [ 'id' => 'id_artist' ]);
    }

    public function behaviors()
    {
        return [
            [
                'class' => UploadBehavior::className(),
                'attribute' => 'image',
                'scenarios' => ['default'],
                'path' => '@webroot/uploads/{artist.slug}',
                'url' => '@web/uploads/{artist.slug}',
            ],
        ];
    }
}

If related model attribute slug will change, you must change folders' names too, otherwise behavior will works not correctly., (*12)

The Versions

21/12 2017

dev-master

9999999-dev

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

The Development Requires

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

21/12 2017

0.1.7.2

0.1.7.2

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

The Development Requires

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

20/12 2017

0.1.7.1

0.1.7.1

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

The Development Requires

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

01/03 2017

0.1.7

0.1.7.0 https://github.com/mongosoft/yii2-upload-behavior

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

The Development Requires

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

27/08 2015

0.1.6

0.1.6.0 https://github.com/mongosoft/yii2-upload-behavior

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

The Development Requires

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

25/05 2015

0.1.5

0.1.5.0 https://github.com/mongosoft/yii2-upload-behavior

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

The Development Requires

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

25/05 2015

0.1.4

0.1.4.0 https://github.com/mongosoft/yii2-upload-behavior

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

23/05 2015

0.1.3

0.1.3.0 https://github.com/mongosoft/yii2-upload-behavior

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

04/04 2015

0.1.2

0.1.2.0 https://github.com/mongosoft/yii2-upload-behavior

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

29/11 2014

0.1.1

0.1.1.0 https://github.com/mongosoft/yii2-upload-behavior

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

by Alexander Mohorev

file extension yii2 upload behavior image resize thumb

23/11 2014

0.1.0

0.1.0.0

Upload behavior for Yii 2

  Sources   Download

BSD 3-Clause

The Requires

 

by Alexander Mohorev

file yii2 upload behavior image resize thumb