首页 > 教程 > 前端技术 > 二开教程

destoon程序禁止同一个会员发布重复信息

发布:2016-11-22 浏览:115 次 评论:0
核心提示:当前已发布会员、分站、商城、供应、求购、行情、公司、展会、文章、信息、品牌、团购、图库、专题、视频、下载、人才、知道等模型禁止同一个会员发布重复信息:已供应为例子:打开文件module/sell/sell.class.php在代码function pass($post)前面增加一个title_exists函数:function title_exists($title) {$condition = title
当前已发布会员、分站、商城、供应、求购、行情、公司、展会、文章、信息、品牌、团购、图库、专题、视频、下载、人才、知道等模型……
禁止同一个会员发布重复信息:
已供应为例子:打开文件module/sell/sell.class.php 
在代码function pass($post)前面增加一个title_exists函数:
function title_exists($title) { 
$condition = "title='$title'"; 
return $this->db->get_one("SELECt itemid FROM {$this->table} WHERe $condition"); 
在if($post['totime'])这前面添加:
if(strlen($post['title']) < 3) return $this->_(lang('message->pass_title')); 
if(!$this->itemid && $this->title_exists($post['title'])) return $this->_(lang('message->pass_chongfu')); 
最后在找到lang\zh-cn\message.inc.php添加一行$L['pass_chongfu'] = '标题重复请重新填写'; 
 
  • 文本链接:https://mbtxw.com/Course/show.php?itemid=102
  • 文章来源:模板模板
  • 版权声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。
  • 我的领地
  • 文章86
  • 人气1
  • 收藏0
  • 粉丝 0