心理咨询网
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.

SiteModel.php 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年3月24日
  7. * 站点配置模型类
  8. */
  9. namespace app\admin\model\content;
  10. use core\basic\Model;
  11. class SiteModel extends Model
  12. {
  13. // 获取系统配置信息
  14. public function getList()
  15. {
  16. return parent::table('ay_site')->where("acode='" . session('acode') . "'")->find();
  17. }
  18. // 检查系统配置信息
  19. public function checkSite()
  20. {
  21. return parent::table('ay_site')->where("acode='" . session('acode') . "'")->find();
  22. }
  23. // 增加系统配置信息
  24. public function addSite($data)
  25. {
  26. return parent::table('ay_site')->insert($data);
  27. }
  28. // 修改系统配置信息
  29. public function modSite($data)
  30. {
  31. return parent::table('ay_site')->where("acode='" . session('acode') . "'")->update($data);
  32. }
  33. // 系统数据库版本
  34. public function getMysql()
  35. {
  36. return parent::one('SELECT VERSION()', MYSQLI_NUM);
  37. }
  38. public function getImage()
  39. {
  40. return parent::table('ay_site')->column('logo');
  41. }
  42. }