uzzielpelawak / grid-bulk-actions
There is no license information available for the latest version (v2.0.0) of this package.
Bulk actions extension for yii 2 gridview
v2.0.0
2023-02-08 12:17 UTC
This package is auto-updated.
Last update: 2025-03-08 19:26:52 UTC
README
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist uzzielpelawak/grid-bulk-actions "*"
or add
"uzzielpelawak/grid-bulk-actions": "*"
to the require section of your composer.json
file.
Configuration
If input in GridView
use uzzielpelawak\extensions\GridBulkActions\GridBulkActions; <?php GridBulkActions::widget([ 'gridId'=>'user-grid', 'actions'=>[ Url::to(['bulk-activate', 'attribute'=>'status'])=>GridBulkActions::t('app', 'Activate'), Url::to(['bulk-deactivate', 'attribute'=>'status'])=>GridBulkActions::t('app', 'Deactivate'), '----'=>[ Url::to(['bulk-delete'])=>GridBulkActions::t('app', 'Delete'), ], ], ]) ?>