quexer69/yii-slit-slider Yii Slit Slider for phundament 3, with packages from composer repository http://packages.phundament.com

extensionwidgetapplicationwebsliderslitslider

Yii Slit Slider Widget

Version 0.3.9-patch1

What is Slit Slider Widget?

A phundament3 Widget from the well known jQuery Slit Slider. But we have a backend crud to administrate all the slider widgets in your web application. featuring P3Media

Composer support for easy installation of this phundament3 widget.

Quick-Start

Composer

If you have composer already installed

composer.phar require quexer69/yii-slit-slider

or

add the package quexer69/yii-slit-slider to your composer.json

!!! You need to have already setup a database connection for the yii-slit-slider migration !!!

Setup

[SETUP] edit in app/config/main.php

REQUIRED

'modules' => array(
        'slitSlider' => array(
            'class' => 'vendor.quexer69.yii-slit-slider.SlitSliderModule',
            'imagePresets' => array(
                'slitSlider-crop-16-9-jpg' => 'Picture 16:9 cropped 2000x700px (JPG)',
                'slitSlider-crop-16-9-png' => 'Picture 16:9 cropped 2000x700px (PNG)',
            ),
        ),
        ...
        'p3media' => array(
            'class' => 'vendor.phundament.p3media.P3MediaModule',
            'params' => array(
                ...
                'presets' => array(
                    ...
                    'slitSlider-crop-16-9-jpg' => array(
                            'name' => 'Picture 16:9 cropped 2000x700px (JPG)',
                            'commands' => array(
                                'resize' => array(2000, 700, 7), // crop
                                'quality' => '85',
                            ),
                            'type' => 'jpg',
                    ),
                    'slitSlider-crop-16-9-png' => array(
                            'name' => 'Picture 16:9 cropped 2000x700px (PNG)',
                            'commands' => array(
                                'resize' => array(2000, 700, 7), // crop
                                'quality' => '85',
                            ),
                            'type' => 'png',
                    ),
                    ...
                ),
            ),
        ),

do add imagePresets to the slitslider module. The indices of this array have to be real p3media->params->presets!

edit in app/config/console.php to add slit-slider migration ($ yiic migrate)

REQUIRED

'migrate' => array(
        'modulePaths' => array(
            ...
            'slitSlider' => 'vendor.quexer69.yii-slit-slider.migrations',
            ...
            ),
        ),

OPTIONAL (if you have schmunk42/multi-theme installed, you can say in which theme should the SlitSlider Backend be displayed)

'themeManager' => array(
            'class' => 'vendor.schmunk42.multi-theme.EMultiThemeManager',
            'basePath' => $applicationDirectory . '/themes',
            'baseUrl' => $baseUrl . '/themes',
            'rules' => array(
                ...
                '^slitSlider/(.*)' => 'backend2',
                ...
            )
        ),

Run widget

Default Call of the slitSlider Widget


    $this->widget('slitSlider.components.SlitSliderWidget');

Params Call of the slitSlider Widget


    $this->widget(
       'vendor.quexer69.yii-slit-slider.SlitSliderWidget',
           array(
               'orientation'   => 'horizontal',    // default orientation if slit has no orientation set
               'imagePreset'   => 'slitslider',    // P3Media image preset for pictures
               'order'         => 'rank DESC',     // sort order of the slits
               'scaleable'     => '1',             // responsive or defined height and width
               'groupId'       => NULL,            // show all slits for a group_id
               'max_width'     => '2000px',        // needed for scalabel = 1 (true)
               'width'         => '100%',          // css width of the wrapper
               'height'        => '500px',         // can be set on scalabel = 0 (false)
           )
    );
  • if groupId is NULL for a slider widget -> all slits will be shown in this slider.
  • if groupId is NULL for a slit -> this slit will be shown in all sliders.
  • groupId can be a number or a groupname

Or easily add through P3WidgetContainer

(you need to add slitSlider Widget to the P3Widgets)

'p3widgets' => array(
        'params' => array(
            'widgets' => array(
                ...
                'slitSlider.components.SlitSliderWidget' => 'SlitSlider'
        ),
        ...

output on any page template

    $this->widget('p3widgets.components.P3WidgetContainer',
        array(
            'id' => 'slitSlider',
            'varyByRequestParam' => P3Page::PAGE_ID_KEY
        )
    );

Administration

Now you get in the P3Admin backend the module SlitSlider to configurate your sliders!!!

Custom Attributes

Every slide will also have some data-attributes that we will use in order to control the effect for each slide. The data attributes that we want are the following:

data-orientation
data-slice1-rotation
data-slice2-rotation
data-slice1-scale
data-slice2-scale

The first one, data-orientation should be either vertical or horizontal. This we need in order to know where to “slice” the slide. It will be either slice horizontally or vertically. The data-slice1-rotation and data-slice2-rotation value will be the rotation degree for each one of the slices and the data-slice1-scale and data-slice2-scale value will be the scale value.

Documentation

Database-Dump

dump Schema

 app/yiic database dump init_slitSlider_tables --prefix=slider_ \
 --dbConnection=db --createSchema=1 \
 --insertData=0

dump datas

 app/yiic database dump replace_slider_data --prefix=slider_ \
 --dbConnection=db --createSchema=0 \
 --foreignKeyChecks=0 --truncateTable=1

Changelog

Yii Slit Slider Widget

CHANGELOG

Preview on 0.3.6

  • add date function (define Start Date and End Date for a slit)

=== Version 0.3.5

  • update slitslider.css -> inputs
  • update controller- > add checkAccess for single tasks -> register css for backend too
  • update model -> validations
  • major update of cruds

Version 0.3.4

  • minor updates and fixes on 'component/SlitSliderWidget'

Version 0.3.3

  • Fix on 'scaleable' [0|1] height & width property
  • Fix typo in public property
  • Update to clevertech/yiiBooster 2.0 (new dependencie)

Version 0.3.2

  • minor fix on 'scaleable' [0|1] height property

Version 0.3.1

  • minor fix on 'scaleable' [0|1] behavior

Version 0.3.0

  • add new public property 'scaleable' [0|1], full responsive or fixed size

Version 0.2.4

  • add accessRules to DefaultController

Version 0.2.4

  • update p3media usage

Version 0.2.3

  • add editable fields to admin and view crud

Version 0.2.2

  • remove model property 'keywords'
  • add active selection between type image and html (input fields)
  • add to module property imagePreset (specific presets for slitslider)
  • minor fixes and changes

Version 0.2.1

  • fix one case for db criteria (querySlits())
  • fix output for empty group_id's in admin.php

Version 0.2.0

  • remove dependency to schmunk42/p3pages
  • you have groupId's to assign slits to any SliderWidget
  • register meta tags (slit keywords) on the slider pages (for SEO and search functions on your app)

Version 0.1.4

  • small bug fixes
  • stable version for P3Media and P3Pages

Version 0.1.3

  • Update Cruds (styling and layout)
  • add links for image slits (appears only if link is set for a slit)
  • remove dependency to yii-user-module

Version 0.1.2

  • Media presets can be set
  • Designed crud
  • controller -> update & create function update

Version 0.1.1

  • P3WidgetContainer support
  • add new params

Version 0.1.0 *Stable release

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



4.0.0 is the latest of 21 releases



BSD-3-Clause license
Stats
1 github stars & 1 github forks
0 downloads in the last day
0 downloads in the last 30 days
245 total downloads