2017 © Pedro Peláez
 

yii2-extension yii2-vote-column

Vote column for grid view

image

fgh151/yii2-vote-column

Vote column for grid view

  • Monday, May 15, 2017
  • by fgh151
  • Repository
  • 1 Watchers
  • 0 Stars
  • 83 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 1 % Grown

The README.md

Vote column

Vote column for grid view, (*1)

Installation

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

Either run, (*3)

php composer.phar require --prefer-dist fgh151/yii2-vote-column "*"

or add, (*4)

"fgh151/yii2-vote-column": "*"

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

Usage

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

 $dataProvider,
         'filterModel' => $searchModel,
         'columns' => [
             ['class' => 'yii\grid\SerialColumn'],
             [
                 'class' => 'fgh151\vote\VoteColumn',
                 'attribute' => 'vote',
                 'onText' => 'Approve',
                 'offText' => 'Not approve',
                 'action' => 'controller/ajax-vote',
                 'filterInputOptions' => [
                     'class' => 'form-control'
                 ]
             ],
         ],
     ]);
 ?>

Params

  • attribute - boolean model attribute to store vote
  • action - action to switch vote example see in phpdoc comments
  • filterInputOptions - see in yii\grid\DataColumn.php

The Versions

15/05 2017

dev-master

9999999-dev

Vote column for grid view

  Sources   Download

MIT

The Requires

 

extension yii2

15/05 2017

v0.0.3

0.0.3.0

Vote column for grid view

  Sources   Download

MIT

The Requires

 

extension yii2

15/05 2017

v0.0.2

0.0.2.0

Vote column for grid view

  Sources   Download

MIT

The Requires

 

extension yii2

12/04 2017

v0.0.1

0.0.1.0

Vote column for grid view

  Sources   Download

MIT

The Requires

 

extension yii2