Document.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * 系统文章
  4. */
  5. namespace app\home\controller;
  6. use think\facade\View;
  7. use think\facade\Lang;
  8. /**
  9. * ============================================================================
  10. * DSMall多用户商城
  11. * ============================================================================
  12. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  13. * 网站地址: http://www.csdeshang.com
  14. * ----------------------------------------------------------------------------
  15. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  16. * 不允许对程序代码以任何形式任何目的的再发布。
  17. * ============================================================================
  18. * 控制器
  19. */
  20. class Document extends BaseMall {
  21. public function initialize() {
  22. parent::initialize();
  23. Lang::load(base_path() . 'home/lang/'.config('lang.default_lang').'/index.lang.php');
  24. }
  25. public function index() {
  26. $code = input('param.code');
  27. if ($code == '') {
  28. $this->error(lang('param_error'));//'缺少参数:文章标识'
  29. }
  30. $document_model = model('document');
  31. $doc = $document_model->getOneDocumentByCode($code);
  32. View::assign('doc', $doc);
  33. /**
  34. * 分类导航
  35. */
  36. $nav_link = array(
  37. array(
  38. 'title' => lang('homepage'),
  39. 'link' => HOME_SITE_URL
  40. ),
  41. array(
  42. 'title' => $doc['document_title']
  43. )
  44. );
  45. View::assign('nav_link_list', $nav_link);
  46. return View::fetch($this->template_dir . 'index');
  47. }
  48. }
  49. ?>