mg-code/yii2-filters

A collection of useful filters for Yii framework 2.0

Installs: 4 594

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

v1.0.1 2015-07-09 12:49 UTC

This package is auto-updated.

Last update: 2024-03-27 02:41:37 UTC


README

This filter throws an exception (BadRequestHttpException) if the applied action is receiving a non-AJAX request.

Usage

To use AjaxFilter, declare it in the behaviors() method of your controller class.

Use only and except properties to include/exclude actions from filter.

public function behaviors()
{
  return [
      'onlyAjax' => [
          'class' => \mgcode\filters\AjaxFilter::className(),
          'only' => ['ajaxValidate'],
      ],
  ];
}

DisableCsrfValidationFilter

This filter disables csrf validation. Mostly used for feedback actions (e.g. when receiving response from payment service).

Usage

To use DisableCsrfValidationFilter, declare it in the behaviors() method of your controller class.

Use only and except properties to include/exclude actions from filter.

public function behaviors()
{
    return [
        'disableCsrf' => [
            'class' => \mgcode\filters\DisableCsrfValidationFilter::className(),
            'only' => ['feedback'],
        ],
    ];
}