Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

RecycleBin.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 回收站
  18. */
  19. class RecycleBin extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 清空回收站
  29. * @author wengxianhu by 2017-7-26
  30. */
  31. public function clear($type = 'all')
  32. {
  33. try {
  34. // 栏目
  35. if (in_array($type, ['all','arctype'])) {
  36. $typeids = Db::name('arctype')->where(['is_del'=>1])->column('id');
  37. if (!empty($typeids)) {
  38. Db::name('arctype')->where(['id'=>['IN', $typeids]])->delete();
  39. Db::name('archives')->where(['typeid'=>['IN', $typeids],'channel'=>6])->delete();
  40. Db::name('single_content')->where(['typeid'=>['IN', $typeids]])->delete();
  41. }
  42. }
  43. // 文档
  44. if (in_array($type, ['all','archives'])) {
  45. $condition = array();
  46. $condition['channel'] = array('neq', 6); // 排除单页模型
  47. $condition['is_del'] = 1;
  48. $row = Db::name('archives')->field('aid,channel')->where($condition)->select();
  49. $list = array();
  50. foreach ($row as $key => $val) {
  51. $list[$val['channel']][] = $val['aid'];
  52. }
  53. $channeltypeRow = Db::name('channeltype')->field('id,table')->where(['id'=>['gt',0]])->getAllWithIndex('id');
  54. foreach ($list as $key => $val) {
  55. $aids = $list[$key];
  56. $table_name = $channeltypeRow[$key]['table'];
  57. Db::name('archives')->where(['aid'=>['IN', $aids]])->delete();
  58. Db::name("{$table_name}_content")->where(['aid'=>['IN', $aids]])->delete();
  59. }
  60. }
  61. // 自定义变量
  62. if (in_array($type, ['all','customvar'])) {
  63. $names = Db::name('config')->where(['is_del'=>1])->column('name');
  64. if (!empty($names)) {
  65. Db::name('config')->where(['name'=>['IN', $names], 'is_del'=>1])->delete();
  66. Db::name('config_attribute')->where(['attr_var_name'=>['IN', $names]])->delete();
  67. }
  68. }
  69. // 留言属性
  70. if (in_array($type, ['all','gbookattr'])) {
  71. $attr_ids = Db::name('guestbook_attribute')->where(['is_del'=>1])->column('attr_id');
  72. if (!empty($attr_ids)) {
  73. Db::name('guestbook_attribute')->where(['attr_id'=>['IN', $attr_ids], 'is_del'=>1])->delete();
  74. Db::name('guestbook_attr')->where(['attr_id'=>['IN', $attr_ids]])->delete();
  75. }
  76. }
  77. } catch (\Exception $e) {
  78. }
  79. }
  80. }