bupy7/yii2-ajaxfilter

This package is abandoned and no longer maintained. No replacement package was suggested.

Filter deny or allow access to actions of controllers.

Installs: 1 848

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 3

Open Issues: 0

Type:yii2-extension

1.0.1 2018-02-19 20:20 UTC

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.