AddSiteDiyView.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace app\event;
  11. use app\model\diy\Template;
  12. /**
  13. * 增加默认自定义数据:网站主页、商品分类、底部导航
  14. */
  15. class AddSiteDiyView
  16. {
  17. public function handle($param)
  18. {
  19. if (!empty($param[ 'site_id' ])) {
  20. $diy_template = new Template();
  21. // 查询一条模板组
  22. $template_goods_info = $diy_template->getFirstTemplateGoods([], 'goods_id', 'goods_id asc')[ 'data' ];
  23. if (!empty($template_goods_info)) {
  24. $res = $diy_template->useTemplate([
  25. 'site_id' => $param[ 'site_id' ],
  26. 'goods_id' => $template_goods_info[ 'goods_id' ],
  27. ]);
  28. return $res;
  29. }
  30. }
  31. }
  32. }