Link.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 Link extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 友情链接列表
  21. * @access public
  22. * @author csdeshang
  23. * @param type $condition 查询条件
  24. * @param type $pagesize 分页页数
  25. * @param type $order 排序
  26. * @return type 返回结果
  27. */
  28. public function getLinkList($condition = '', $pagesize = '',$order='link_sort asc')
  29. {
  30. if ($pagesize) {
  31. $result = Db::name('link')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  32. $this->page_info = $result;
  33. return $result->items();
  34. }else{
  35. return Db::name('link')->where($condition)->order($order)->select()->toArray();
  36. }
  37. }
  38. /**
  39. * 取单个友情链接
  40. * @access public
  41. * @author csdeshang
  42. * @param type $id 链接ID
  43. * @return type
  44. */
  45. public function getOneLink($id)
  46. {
  47. return Db::name('link')->where('link_id',$id)->find();
  48. }
  49. /**
  50. * 新增友情链接
  51. * @access public
  52. * @author csdeshang
  53. * @param type $data 参数内容
  54. * @return type
  55. */
  56. public function addLink($data)
  57. {
  58. return Db::name('link')->insertGetId($data);
  59. }
  60. /**
  61. * 更新友情链接
  62. * @access public
  63. * @author csdeshang
  64. * @param type $data 更新数据
  65. * @param type $link_id 链接id
  66. * @return type
  67. */
  68. public function editLink($data,$link_id)
  69. {
  70. return Db::name('link')->where('link_id',$link_id)->update($data);
  71. }
  72. /**
  73. * 删除
  74. * @access public
  75. * @author csdeshang
  76. * @param array $id 链接id
  77. * @return bool
  78. */
  79. public function delLink($id)
  80. {
  81. $link = $this->getOneLink($id);
  82. //删除友情链接图片
  83. @unlink(BASE_UPLOAD_PATH . DIRECTORY_SEPARATOR . DIR_ADMIN . DIRECTORY_SEPARATOR .'link'. DIRECTORY_SEPARATOR .$link['link_pic']);
  84. return Db::name('link')->where('link_id',intval($id))->delete();
  85. }
  86. }