FriendsOfCake / search

CakePHP: Easy model searching

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HOW USE BETWEEN Operator

samqueiroz opened this issue · comments

How to use the BETWEEN operator in the plugin ?

$this->addBehavior('Search.Search');
$this->searchManager()
.......

->add('foo', 'Search.Callback', [
'callback' => function ($query, $args, $manager) {
// Modify $query as required
}
]);

commented

This is a bug tracker, not a help forum. You can check the CakePHP manual or ask on one of the help forums on how to generate a query with BETWEEN.