Seo.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\admin\controller;
  3. use think\facade\View;
  4. use think\facade\Lang;
  5. use think\facade\Db;
  6. /**
  7. * ============================================================================
  8. * DSMall多用户商城
  9. * ============================================================================
  10. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  11. * 网站地址: http://www.csdeshang.com
  12. * ----------------------------------------------------------------------------
  13. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  14. * 不允许对程序代码以任何形式任何目的的再发布。
  15. * ============================================================================
  16. * 控制器
  17. */
  18. class Seo extends AdminControl {
  19. public function initialize() {
  20. parent::initialize();
  21. Lang::load(base_path() . 'admin/lang/'.config('lang.default_lang').'/seo.lang.php');
  22. }
  23. function index() {
  24. if (!request()->isPost()) {
  25. //读取SEO信息
  26. $list = Db::name('seo')->select()->toArray();
  27. $seo = array();
  28. foreach ((array) $list as $value) {
  29. $seo[$value['seo_type']] = $value;
  30. }
  31. View::assign('seo', $seo);
  32. // $category = model('goodsclass')->getGoodsclassForCacheModel();
  33. // View::assign('category', $category);
  34. return View::fetch('index');
  35. } else {
  36. $update = array();
  37. $seo = input('post.SEO/a');#获取数组
  38. if (is_array($seo)) {
  39. foreach ($seo as $key => $value) {
  40. Db::name('seo')->where(array('seo_type' => $key))->update($value);
  41. }
  42. dkcache('seo');
  43. ds_json_encode('10000', lang('ds_common_save_succ'));
  44. }
  45. }
  46. }
  47. }
  48. ?>