Config.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Config extends BaseModel
  17. {
  18. /**
  19. * 读取系统设置信息
  20. * @access public
  21. * @author csdeshang
  22. * @param string $name 系统设置信息名称
  23. * @return array 数组格式的返回结果
  24. */
  25. public function getOneConfigByCode($code){
  26. $where = "code='".$code."'";
  27. $result=Db::name('config')->where($where)->select()->toArray();
  28. if(is_array($result) and is_array($result[0])){
  29. return $result[0];
  30. }
  31. return false;
  32. }
  33. /**
  34. * 读取系统设置列表
  35. * @access public
  36. * @author csdeshang
  37. * @return type
  38. */
  39. public function getConfigList()
  40. {
  41. $result = Db::name('config')->select()->toArray();
  42. if (is_array($result)) {
  43. $list_config = array();
  44. foreach ($result as $k => $v) {
  45. $list_config[$v['code']] = $v['value'];
  46. }
  47. }
  48. return $list_config;
  49. }
  50. /**
  51. * 更新信息
  52. * @access public
  53. * @author csdeshang
  54. * @param array $data 更新数据
  55. * @return bool 布尔类型的返回结果
  56. */
  57. public function editConfig($data)
  58. {
  59. if (empty($data)) {
  60. return false;
  61. }
  62. if (is_array($data)) {
  63. foreach ($data as $k => $v) {
  64. $tmp = array();
  65. $specialkeys_arr = array('statistics_code');
  66. $tmp['value'] = (in_array($k, $specialkeys_arr) ? htmlentities($v, ENT_QUOTES) : $v);
  67. $result = Db::name('config')->where('code', $k)->update($tmp);
  68. }
  69. dkcache('config');
  70. return true;
  71. } else {
  72. return false;
  73. }
  74. }
  75. }
  76. ?>