Category.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. namespace app\home\controller;
  3. use think\facade\View;
  4. use think\facade\Lang;
  5. /**
  6. * ============================================================================
  7. * DSMall多用户商城
  8. * ============================================================================
  9. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  10. * 网站地址: http://www.csdeshang.com
  11. * ----------------------------------------------------------------------------
  12. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  13. * 不允许对程序代码以任何形式任何目的的再发布。
  14. * ============================================================================
  15. * 控制器
  16. */
  17. class Category extends BaseMall {
  18. public function initialize() {
  19. parent::initialize();
  20. Lang::load(base_path() . 'home/lang/'.config('lang.default_lang').'/category.lang.php');
  21. }
  22. /*
  23. * 显示商品分类列表
  24. */
  25. public function goods() {
  26. //获取全部的商品分类
  27. //导航
  28. $nav_link = array(
  29. '0' => array('title' => lang('homepage'), 'link' => HOME_SITE_URL),
  30. '1' => array('title' => lang('category_index_goods_class'))
  31. );
  32. View::assign('nav_link_list', $nav_link);
  33. View::assign('html_title', config('ds_config.site_name') . ' - ' . lang('category_index_goods_class'));
  34. return View::fetch($this->template_dir . 'goods_category');
  35. }
  36. /*
  37. * 显示店铺分类列表
  38. */
  39. public function store() {
  40. //导航
  41. $nav_link = array(
  42. '0' => array('title' => lang('homepage'), 'link' => HOME_SITE_URL),
  43. '1' => array('title' => lang('category_index_store_class'))
  44. );
  45. View::assign('nav_link_list', $nav_link);
  46. $sc_list = model('storeclass')->getStoreclassList();
  47. View::assign('sc_list', $sc_list);
  48. return View::fetch($this->template_dir . 'store_category');
  49. }
  50. }