EditablePageConfig.php 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 EditablePageConfig extends BaseModel {
  17. public $page_info;
  18. public $store_id=0;
  19. /**
  20. * 新增可编辑页面配置
  21. * @author csdeshang
  22. * @param array $data 参数内容
  23. * @return bool 布尔类型的返回结果
  24. */
  25. public function addEditablePageConfig($data) {
  26. return Db::name('editable_page_config')->insertGetId($data);
  27. }
  28. /**
  29. * 新增可编辑页面配置
  30. * @author csdeshang
  31. * @param array $data 参数内容
  32. * @return bool 布尔类型的返回结果
  33. */
  34. public function addEditablePageConfigAll($data) {
  35. return Db::name('editable_page_config')->insertAll($data);
  36. }
  37. /**
  38. * 删除一个可编辑页面配置
  39. * @author csdeshang
  40. * @param array $condition 条件
  41. * @return bool 布尔类型的返回结果
  42. */
  43. public function delEditablePageConfig($condition) {
  44. //删除图片
  45. $editable_page_config_id_list=Db::name('editable_page_config')->where($condition)->column('editable_page_config_id');
  46. if($editable_page_config_id_list){
  47. $upload_condition = array();
  48. $upload_condition[] = array('upload_type','=',7);
  49. $upload_condition[] = array('item_id','in',$editable_page_config_id_list);
  50. $file_name_list=Db::name('upload')->where($upload_condition)->column('file_name');
  51. foreach($file_name_list as $file_name){
  52. @unlink(BASE_UPLOAD_PATH . DIRECTORY_SEPARATOR . ATTACH_EDITABLE_PAGE. DIRECTORY_SEPARATOR .$file_name);
  53. }
  54. model('upload')->delUpload($upload_condition);
  55. }
  56. return Db::name('editable_page_config')->where($condition)->delete();
  57. }
  58. /**
  59. * 获取可编辑页面配置列表
  60. * @author csdeshang
  61. * @param array $condition 查询条件
  62. * @param obj $pagesize 分页页数
  63. * @param str $orderby 排序
  64. * @return array 二维数组
  65. */
  66. public function getEditablePageConfigList($condition = array(), $pagesize = '', $orderby = 'editable_page_config_sort_order asc') {
  67. if ($pagesize) {
  68. $result = Db::name('editable_page_config')->where($condition)->order($orderby)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  69. $this->page_info = $result;
  70. return $result->items();
  71. } else {
  72. return Db::name('editable_page_config')->where($condition)->order($orderby)->select()->toArray();
  73. }
  74. }
  75. public function getOneEditablePageConfig($condition = array()) {
  76. return Db::name('editable_page_config')->where($condition)->find();
  77. }
  78. /**
  79. * 更新可编辑页面配置记录
  80. * @author csdeshang
  81. * @param array $data 更新内容
  82. * @return bool
  83. */
  84. public function editEditablePageConfig($condition, $data) {
  85. return Db::name('editable_page_config')->where($condition)->update($data);
  86. }
  87. }
  88. ?>