Created
January 27, 2020 10:22
-
-
Save Sentinel-7/f5eec607e915060ee3d8e37b79cc6de4 to your computer and use it in GitHub Desktop.
Сделать поиск в каталоге minishop2 по id заголовка
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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