Skip to content

Instantly share code, notes, and snippets.

@Sentinel-7
Created January 27, 2020 10:22
Show Gist options
  • Save Sentinel-7/f5eec607e915060ee3d8e37b79cc6de4 to your computer and use it in GitHub Desktop.
Save Sentinel-7/f5eec607e915060ee3d8e37b79cc6de4 to your computer and use it in GitHub Desktop.
Сделать поиск в каталоге minishop2 по id заголовка
https://github.com/bezumkin/miniShop2/blob/master/core/components/minishop2/processors/mgr/product/getlist.class.php#L69
// начиная с 68 строки
if (!empty($query)) {
//if (is_numeric($query)) {
// $c->where(array(
// 'msProduct.id' => $query,
// 'OR:Data.article:=' => $query,
// ));
//} else {
$c->where(array(
'msProduct.pagetitle:LIKE' => "%{$query}%",
'OR:msProduct.longtitle:LIKE' => "%{$query}%",
'OR:msProduct.description:LIKE' => "%{$query}%",
'OR:msProduct.introtext:LIKE' => "%{$query}%",
'OR:Data.article:LIKE' => "%{$query}%",
'OR:Data.made_in:LIKE' => "%{$query}%",
'OR:Vendor.name:LIKE' => "%{$query}%",
'OR:Category.pagetitle:LIKE' => "%{$query}%",
));
// }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment