提交 ed11e38f 编写于 作者: F fengcheche

搜索时查询分类增加钩子

上级 c5ec7a5c
......@@ -463,6 +463,15 @@ class SearchService
public static function GoodsCategoryList($params = [])
{
$data = [];
// 查询分类条件处理钩子
$hook_name = 'plugins_service_search_category_list_where';
Hook::listen($hook_name, [
'hook_name' => $hook_name,
'is_backend' => true,
'params' => &$params,
]);
if(MyC('home_search_is_category', 0) == 1)
{
$pid = empty($params['category_id']) ? 0 : intval($params['category_id']);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册