截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommunitySettingLogic.php 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\admin\logic\community;
  3. use app\common\basics\Logic;
  4. use app\common\server\ConfigServer;
  5. /**
  6. * 种草社区设置
  7. * Class CommunityTopicLogic
  8. * @package app\admin\logic\content
  9. */
  10. class CommunitySettingLogic extends Logic
  11. {
  12. /**
  13. * @notes 获取社区配置
  14. * @return array
  15. * @author 段誉
  16. * @date 2022/4/28 16:13
  17. */
  18. public static function getConfig()
  19. {
  20. $config = [
  21. 'status' => ConfigServer::get('community', 'status', 1),
  22. 'audit_article' => ConfigServer::get('community', 'audit_article', 1),
  23. 'audit_comment' => ConfigServer::get('community', 'audit_comment', 1),
  24. ];
  25. return $config;
  26. }
  27. /**
  28. * @notes 设置社区配置
  29. * @param $post
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\DbException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. * @author 段誉
  34. * @date 2022/4/28 16:14
  35. */
  36. public static function setConfig($post)
  37. {
  38. ConfigServer::set('community', 'status', $post['status']);
  39. ConfigServer::set('community', 'audit_article', $post['audit_article']);
  40. ConfigServer::set('community', 'audit_comment', $post['audit_comment']);
  41. }
  42. }