Example #1
0
 /**
  * 分类页面
  */
 public function main()
 {
     //获取当前页码
     $page = 1;
     if (isset($this->param['page'])) {
         $page = $this->param['page'];
     }
     //获取分类Id
     $mid = $this->param['mid'];
     //获取该分类下的文章
     $articleList = ArticleBusiness::getArticleByMid($mid, $page);
     $pageNav = $articleList['page_nav'];
     $articleList = $articleList['data'];
     foreach ($articleList as $k => $article) {
         //整理数据
         $articleList[$k]['author'] = $article['author'];
         $articleList[$k]['title'] = $article['title'];
         $articleList[$k]['description'] = $article['description'];
         $articleList[$k]['ctime'] = date('Y-m-d H:i:s', $article['ctime']);
         $articleList[$k]['tag'] = explode('|', $article['tag']);
         if (empty($article['description'])) {
             $articleList[$k]['description'] = mb_substr($article['content'], 0, 300, 'UTF-8');
         } else {
             $articleList[$k]['description'] = mb_substr($article['description'], 0, 300, 'UTF-8');
         }
     }
     //获取该分类下热门文章
     $articleHotList = ArticleBusiness::getHotListByMid($mid);
     foreach ($articleHotList as $k => $article) {
         $articleHotList[$k]['title'] = mb_substr($article['title'], 0, 30, 'UTF-8') . '...';
     }
     //获取该分类下最新评论
     $commentNewList = CommentBusiness::getNewListByMid($mid);
     foreach ($commentNewList as $key => $comment) {
         $commentNewList[$key]['content'] = mb_substr($comment['content'], 0, 30, 'UTF-8') . '...';
     }
     //获取Tag
     $tags = TagBusiness::getRandList(ParamConstant::PARAM_TAG_LIST_NUM);
     //SEO的title,keywords,description
     $seo_title = $this->menuList[$mid]['seo_title'];
     $seo_description = $this->menuList[$mid]['seo_description'];
     $seo_keywords = $this->menuList[$mid]['seo_keywords'];
     View::assign('seo_title', $seo_title);
     View::assign('seo_description', $seo_description);
     View::assign('seo_keywords', $seo_keywords);
     View::assign('tags', $tags);
     View::assign('commentNewList', $commentNewList);
     View::assign('articleHotList', $articleHotList);
     View::assign('pageNav', $pageNav);
     View::assign('articleList', $articleList);
     View::showFrontTpl('menu');
 }
Example #2
0
 /**
  * @descrpition 单篇文章展示
  * @return Ambigous
  */
 public function main()
 {
     $articleId = $this->param['aid'];
     if (empty($articleId)) {
         View::showErrorMessage(GAME_URL, '参数错误');
     }
     //获取文章信息
     $article = ArticleBusiness::getArticle($articleId);
     if (empty($article)) {
         View::showErrorMessage(GAME_URL, '内容丢掉了-.-');
     }
     $article['author'] = $article['author'];
     $article['title'] = $article['title'];
     $article['description'] = $article['description'];
     $article['ctime'] = date('Y-m-d H:i:s', $article['ctime']);
     $article['tag'] = explode('|', $article['tag']);
     //        $article['content'] = htmlspecialchars_decode($article['content']);
     //        preg_match_all("/\[code\](.*?)\[\/code\]/s",  $article['content'], $match);
     //
     //        $article['content'] =  preg_replace("/\[code\](.*?)\[\/code\]/s", htmlspecialchars('${1}'), $article['content']);
     //获取该文章的评论
     $commentList = CommentBusiness::getCommentByAid($this->param['aid']);
     $commentList = Func::arrayKey($commentList);
     //将评论二级分类
     foreach ($commentList as $key => $comment) {
         if ($comment['cid'] != 0) {
             $commentList[$comment['cid']]['son'][] = $comment;
             unset($commentList[$key]);
         }
     }
     //获取该分类下热门文章
     $articleHotList = ArticleBusiness::getHotListByMid($article['mid']);
     foreach ($articleHotList as $k => $a) {
         $articleHotList[$k]['title'] = mb_substr($a['title'], 0, 30, 'UTF-8') . '...';
     }
     //获取该分类下最新评论
     $commentNewList = CommentBusiness::getNewListByMid($article['mid']);
     foreach ($commentNewList as $key => $comment) {
         $commentNewList[$key]['content'] = mb_substr($commentNewList[$key]['content'], 0, 30, 'UTF-8') . '...';
     }
     //获取Tag
     $tags = TagBusiness::getRandList(ParamConstant::PARAM_TAG_LIST_NUM);
     //对文章进行处理,代码部分特殊显示.
     $article['content'] = preg_replace('/\\[code\\]/s', '<pre class="prettyprint linenums">', $article['content']);
     $article['content'] = preg_replace('/\\[\\/code\\]/s', '</pre>', $article['content']);
     //SEO的title,keywords,description
     $seo_title = $article['seo_title'];
     $seo_description = $article['seo_description'];
     $seo_keywords = $article['seo_keywords'];
     //文章的点击数+1
     ArticleBusiness::clicks($articleId);
     View::assign('seo_title', $seo_title);
     View::assign('seo_description', $seo_description);
     View::assign('seo_keywords', $seo_keywords);
     View::assign('tags', $tags);
     View::assign('commentList', $commentList);
     View::assign('commentNewList', $commentNewList);
     View::assign('articleHotList', $articleHotList);
     View::assign('article', $article);
     View::showFrontTpl('article');
 }