最土增加新闻模块思路

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

来源于上海汽车租赁