| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace app\index\controller;
- use think\Controller;
- class Topic extends Base
- {
- public function __construct()
- {
- parent::__construct();
- }
- public function index()
- {
- $this->label_topic_index();
- return $this->label_fetch('topic/index');
- }
- public function search()
- {
- $param = mac_param_url();
- $this->check_search($param);
- $this->label_search($param);
- return $this->label_fetch('topic/search');
- }
- public function ajax_search()
- {
- $param = mac_param_url();
- $this->check_ajax();
- $this->check_search($param,1);
- $this->label_search($param);
- return $this->label_fetch('topic/ajax_search');
- }
- public function detail()
- {
- $info = $this->label_topic_detail();
- return $this->label_fetch( mac_tpl_fetch('topic',$info['topic_tpl'],'detail') );
- }
- public function ajax_detail()
- {
- $this->check_ajax();
- $info = $this->label_topic_detail();
- return $this->label_fetch('topic/ajax_detail');
- }
- public function rss()
- {
- $info = $this->label_topic_detail();
- return $this->label_fetch('topic/rss');
- }
- }
|