bupy7 / yii2-ajaxfilter
Filter deny or allow access to actions of controllers.
Installs: 2 341
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 3
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2020-09-11 05:37:38 UTC
README
Filter deny or allow access to actions of controllers.
Installation
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require bupy7/yii2-ajaxfilter "dev-master"
or add
"bupy7/yii2-ajaxfilter": "dev-master"
to the require section of your composer.json file.
How use
use bupy7\ajaxfilter\AjaxFilter; public function behaviors() { return [ [ 'class' => AjaxFilter::className(), 'actions' => ['actionName', 'actionName2'], ], ]; }
License
yii2-ajaxfilter is released under the BSD 3-Clause License.