Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Fixes a missing word, see #115
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Dec 8, 2013
1 parent 3d8c686 commit 57a4ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ Each filter record should contain array with several keys:
* 'value' type of search very useful when you need exact compare. So if you have select box in your view as a filter than you definitely should use value type.
* 'expression' type useful if you want to add condition that will generate by some method, and condition field contain several parameter like in previous sample used for 'range'. Field here contains 'Article.views BETWEEN ? AND ?' and Article::makeRangeCondition returns array of two values.
* 'subquery' type useful if you want to add condition that looks like FIELD IN (SUBQUERY), where SUBQUERY generated by method declared in this filter configuration.
* 'query' most universal type of search. In this case method should return array(that contain condition of any complexity). Returned condition will joined to whole search conditions.
* 'query' most universal type of search. In this case method should return array(that contain condition of any complexity). Returned condition will be joined to whole search conditions.

## Post, redirect, get concept ##

Expand Down

0 comments on commit 57a4ddc

Please sign in to comment.