YourPhp 笔记

一、BUT修正

1、Tag标签:删除内容后Tag未删除和减少数量

需修改的文件:\Yourphp\Lib\Action\AdminbaseAction.class.php

共二处同样问题修改,修改判断keywords是否存在

//if($fields['keywords']){
if(in_array("keywords", $fields)){

 

 

二、添加功能

1、为每个模型添加各自Tag模板页

文件路径:\Yourphp\Lib\Action\Home\TagsAction.class.php

$this->assign('bcid',0);//顶级栏目 
//$template = $slug ? 'list' : 'index';  //修改前
$template = $slug ? $module.'_list' : 'index';  //修改后
$this->display("Tags:".$template);

 

添加模板:Tags_Product_list.html(产品模型Tag)、Tags_Article_list.html(文章模型Tag)

posted @ 2013-07-09 01:02  faily  阅读(246)  评论(0编辑  收藏  举报