123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * 狮子鱼社区团购系统
- *
- * ==========================================================================
- * @link http://www.liofis.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license http://www.liofis.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Home\Widget;
- use Think\Controller;
- /**
- * 商城推荐活动
- */
- class SubjectWidget extends Controller{
-
- public function hot_subject_show()
- {
-
- if (!$slider_cache = S('slider_nav_cache')) {
- $slider=M('plugins_slider')->where( array('type' => 'index_ad_nav') )->field('slider_name,image,url')->order('sort_order desc')->limit(8)->select();
- S('slider_nav_cache', $slider);
- $slider_cache=$slider;
- }
- $this->slider=$slider_cache;
-
- $this->display('Widget:hot_subject_show');
- }
-
- public function hot_kuaibao_show()
- {
- $this->display('Widget:hot_kuaibao_show');
- }
-
- }
|