最土增加新闻模块思路
2011-03-19 12:59 来源:www.chinab4c.com 作者:熊斌
最近很多使用最土程序的朋友,都提出个最土程序二次开发需求。就是给最土程序增加个新闻模块.我的思路很简单就是对最土分类进行扩展,结合最土商品发布机制,在最土数据库中增加个新闻表。对应的增加最土新闻模块的处理以下是思路。
1:incude\function\common.php (587) function get_zones($zone=null) 增加以下内容.
'article' =>'新闻分类',
2:include\function\current.php (21) function current_backend() 增加以下内容
'/manage/article/index.php' => '新闻',
3:新增文章表
create table article(
id int(1) not null primary key auto_increment,
group_id int(1) default 0,
title varchar(255),
keyword varchar(255),
content text,
addtime int(1),
user_id int(1),
click_count int(1),
sort_type int(1) default '0'
);
4:include\function\current.php (21)
function mcurrent_article($selector=null) {
$a = array(
'/manage/article/index.php' => '新闻列表',
'/manage/article/create.php' => '文章发布',
);
$l = "/manage/article/{$selector}.php";
return current_link($l,$a,true);
}
以上就是最土增加新闻模块思路.
来源:http://www.chinab4c.com
来源于上海汽车租赁
最近更新
常用插件
- ecshop整合baidu百度开放平台
大家都知道,baidu的开放平台已经很成熟了。可以方便中小型B2C企业数据...
- ecshop2.7.2增加商品销量排序
ecshop2.7.2虽然在用户体验方面,有些提高。但是很多根本性的东西,还是...
- ecshop注册红包插件
ecshop的红包使用是ecshop的一大特点.ecshop注册的时候,我们可以开发一...
- ecshop中如何判断是否微信
ecshop中如何判断是否微信浏览器,我们在ecshop手机版里面。有时候需要...
- ecshop二次开发售后维修卡
插件介绍: 本插件是用于专门从事电子,信息,软件等售后服务关键比...