MaterialMannager.php 827 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\system\Wechat\event;
  11. use addon\system\Wechat\sitehome\controller\Material;
  12. use think\facade\View;
  13. class MaterialMannager
  14. {
  15. /**
  16. * 图文消息管理
  17. */
  18. public function handle($param = [])
  19. {
  20. $material = new Material();
  21. $result = $material->materialMannager();
  22. $return_array = array_merge($result[1], $param);
  23. return View::fetch($result[0], $return_array, $result[2]);
  24. }
  25. }