yiicod/yii2-datafilter

Awesome data filter.

Installs: 865

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.2 2018-04-09 20:11 UTC

This package is auto-updated.

Last update: 2024-04-26 23:41:45 UTC


README

Latest Stable Version Total Downloads Scrutinizer Code QualityCode Climate

Provides the functionality to create data filters logic. Using handlers you can create chains of filters.

Usage

$filteredData = DataFilter::filter(new MyAwesomeFilter($notFilteredData, $additionalParamsForFilteringData));

Where MyAwesomeFilter extends DataFilterAbstract and has list of handlers, which filters data in course. Each handler should implements DataHandlerInterface