Config.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 数据层模型
  14. */
  15. class Config extends BaseModel
  16. {
  17. /**
  18. * 读取系统设置信息
  19. * @access public
  20. * @author csdeshang
  21. * @param string $name 系统设置信息名称
  22. * @return array 数组格式的返回结果
  23. */
  24. public function getOneConfigByCode($code){
  25. $where = "code='".$code."'";
  26. $result=Db::name('config')->where($where)->select()->toArray();
  27. if(is_array($result) and is_array($result[0])){
  28. return $result[0];
  29. }
  30. return false;
  31. }
  32. /**
  33. * 读取系统设置列表
  34. * @access public
  35. * @author csdeshang
  36. * @return type
  37. */
  38. public function getConfigList()
  39. {
  40. $result = Db::name('config')->select()->toArray();
  41. if (is_array($result)) {
  42. $list_config = array();
  43. foreach ($result as $k => $v) {
  44. $list_config[$v['code']] = $v['value'];
  45. }
  46. }
  47. return $list_config;
  48. }
  49. /**
  50. * 更新信息
  51. * @access public
  52. * @author csdeshang
  53. * @param array $data 更新数据
  54. * @return bool 布尔类型的返回结果
  55. */
  56. public function editConfig($data)
  57. {
  58. if (empty($data)) {
  59. return false;
  60. }
  61. if (is_array($data)) {
  62. foreach ($data as $k => $v) {
  63. $tmp = array();
  64. $specialkeys_arr = array('statistics_code');
  65. $tmp['value'] = (in_array($k, $specialkeys_arr) ? htmlentities($v, ENT_QUOTES) : $v);
  66. $result = Db::name('config')->where('code', $k)->update($tmp);
  67. }
  68. dkcache('config');
  69. return true;
  70. } else {
  71. return false;
  72. }
  73. }
  74. }
  75. ?>