2017 © Pedro Peláez
 

yii2-extension yii2-gallery-manager

Port of 'zxbodya/yii-gallery-manager'. Extension for yii, that allows to manage image galleries

image

sashsvamir/yii2-gallery-manager

Port of 'zxbodya/yii-gallery-manager'. Extension for yii, that allows to manage image galleries

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 49 Forks
  • 0 Open issues
  • 1 Versions
  • 11 % Grown

The README.md

Gallery Manager usage instructions

Yii2 port of https://github.com/zxbodya/yii-gallery-manager, (*1)

This port have next features:

  • saving original file image with original filename

warning: preview version, (*2)

Features

  1. AJAX image upload
  2. Optional name and description for each image
  3. Possibility to arrange images in gallery
  4. Ability to generate few versions for each image with different configurations
  5. Drag & Drop

Dependencies

  1. Yii2
  2. Twitter bootstrap assets (v3)
  3. Imagine library
  4. JQuery UI (included with Yii)

Installation:

php composer.phar require --prefer-dist sashsvamir/yii2-gallery-manager "*@dev", (*3)

Usage

Add migration to create table for images:, (*4)

class m150318_154933_gallery_ext extends \sashsvamir\galleryManager\migrations\m140930_003227_gallery_manager
{
}

Or better - copy migration to your application., (*5)

Add GalleryBehavior to your model, and configure it, create folder for uploaded files., (*6)

public function behaviors()
{
    return [
         'galleryBehavior' => [
             'class' => GalleryBehavior::class,
             'type' => 'product',
             'extension' => 'jpg',
             'directory' => Yii::getAlias('@webroot') . '/images/product/gallery',
             'url' => Yii::getAlias('@web') . '/images/product/gallery',
             'versions' => [
                 'small' => function ($img) {
                     /** @var \Imagine\Image\ImageInterface $img */
                     return $img
                         ->copy()
                         ->thumbnail(new \Imagine\Image\Box(200, 200));
                 },
                 'medium' => function ($img) {
                     /** @var Imagine\Image\ImageInterface $img */
                     $dstSize = $img->getSize();
                     $maxWidth = 800;
                     if ($dstSize->getWidth() > $maxWidth) {
                         $dstSize = $dstSize->widen($maxWidth);
                     }
                     return $img
                         ->copy()
                         ->resize($dstSize);
                 },
             ]
         ]
    ];
}

Add GalleryManagerAction in controller somewhere in your application. Also on this step you can add some security checks for this action., (*7)

public function actions()
{
    return [
       'galleryApi' => [
           'class' => GalleryManagerAction::class,
           // mappings between type names and model classes (should be the same as in behaviour)
           'types' => [
               'product' => Product::class
           ]
       ],
    ];
}

Add ImageAttachmentWidget somewhere in you application, for example in editing from., (*8)

    echo sashsvamir\galleryManager\GalleryManager::widget([
        'model' => $model,
        'behaviorName' => 'galleryBehavior',
        'apiRoute' => 'product/galleryApi',
        'options' => [
            'class' => 'form-group',
        ],
    ]);

Done!, (*9)

Now, you can use uploaded images from gallery like following:, (*10)

foreach($model->getBehavior('galleryBehavior')->getImages() as $image) {
    echo Html::img($image->getUrl('medium'));
}

Options

  1. Add migration that will create table you need
  2. Change tableName property in behavior configuration

The Versions

08/03 2016

dev-master

9999999-dev

Port of 'zxbodya/yii-gallery-manager'. Extension for yii, that allows to manage image galleries

  Sources   Download

MIT

The Requires

 

by Bogdan Savluk
by Alexander Shchukin

extension yii2 gallery image