12345678910111213141516171819202122232425262728293031323334353637 |
- <?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 MenuWidget extends Controller{
-
- function menu_show($type){
- if (!$menu_cache = S('menu_cache')) {
- $hashids = new \Lib\Hashids(C('PWD_KEY'), C('URL_ID'));
- $menu=M('goods_category')->select();
- foreach ($menu as $k => $v) {
- $menu[$k]['id']=$hashids->encode($v['id']);
- }
- S('menu_cache', $menu);
- $menu_cache=$menu;
- }
-
- $this->menu=$menu_cache;
- $this->type=$type;
- $this->display('Widget:menu');
- }
-
- }
|