OneThink修改后台文档列表搜索规则

来源:互联网 发布:网络通信代维招聘 编辑:程序博客网 时间:2024/06/05 10:57

后台搜索功能仅支持按文章标题来搜索,实在不够用。修改源码后可自行添加搜索规则。


OT版本:1.1.141101

修改文件:\Application\Admin\Controller\ArticleController.class.php

修改方法:getDocumentList


原始代码

if(isset($_GET['title'])){    $map['title']  = array('like', '%'.(string)I('title').'%');}

修改为同时可以搜索文章ID和文章标题。

if(isset($_GET['title'])){    $where['title']  = array('like', '%'.(string)I('title').'%');    $where['id'] = intval(I('title'));    $where['_logic'] = 'OR';    $map['_complex'] = $where;}


0 0