Açıklama Yok
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.

Single.php 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 Single extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 后置操作方法
  29. * 自定义的一个函数 用于数据保存后做的相应处理操作, 使用时手动调用
  30. * @param int $aid 产品id
  31. * @param array $post post数据
  32. * @param string $opt 操作
  33. */
  34. public function afterSave($aid, $post, $opt)
  35. {
  36. $post['aid'] = $aid;
  37. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  38. model('Field')->dealChannelPostData(6, $post, $addonFieldExt);
  39. }
  40. /**
  41. * 删除的后置操作方法
  42. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  43. * @param int $aid
  44. */
  45. public function afterDel($typeidArr = array())
  46. {
  47. if (is_string($typeidArr)) {
  48. $typeidArr = explode(',', $typeidArr);
  49. }
  50. // 同时删除单页文档表
  51. Db::name('archives')->where(
  52. array(
  53. 'typeid'=>array('IN', $typeidArr)
  54. )
  55. )
  56. ->delete();
  57. // 同时删除内容
  58. Db::name('single_content')->where(
  59. array(
  60. 'typeid'=>array('IN', $typeidArr)
  61. )
  62. )
  63. ->delete();
  64. // 清除缓存
  65. \think\Cache::clear("arctype");
  66. extra_cache('admin_all_menu', NULL);
  67. }
  68. }