使用finecms 的過程當中,若是一個分類有多個分類,那麼如何在用戶點擊大欄目時,自動導航到他的第一個子欄目中呢,在官方提供的demo中沒有找到答案就本身寫一下吧php
在controllers/contentController.php中找到listaction()這個函數進行以下改造,找了子分類,並使用header函數,跳轉過去,就完成了函數
if ($cat['typeid'] == 1) {
if($cat['child']=="1") { $childs = explode(",", $cat['arrchildid']); $f_ids=$childs[0]; $url=$this->cats[$f_ids]['url']; header("location:$url"); }
//內部欄目 $this->view->assign($cat);