Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 1.03 KB

README.md

File metadata and controls

16 lines (11 loc) · 1.03 KB

Yii Data filter extension

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