Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created November 14, 2015 21:34
Show Gist options
  • Save d1i1m1o1n/e6ac1067aed092b5027e to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/e6ac1067aed092b5027e to your computer and use it in GitHub Desktop.
Bitrix smart search filter
<?
$GLOBALS['arrFilter'] = Array();
foreach (explode(' ', $_REQUEST["q"]) as $key => $value) {
$GLOBALS['arrFilter'][] = array(
"LOGIC" => "OR",
array("NAME" => "%$value%"),
array("DETAIL_TEXT"=>"%$value%"),
array("PREVIEW_TEXT"=>"%$value%")
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment