Sin descripción
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.

Custom.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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 Custom 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, $table)
  35. {
  36. $post['aid'] = $aid;
  37. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  38. model('Field')->dealChannelPostData($post['channel'], $post, $addonFieldExt);
  39. // 处理外贸链接
  40. if (is_dir('./weapp/Waimao/')) {
  41. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  42. $waimaoLogic->update_htmlfilename($aid, $post, $opt);
  43. }
  44. // --处理TAG标签
  45. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'], $post['arcrank'], $opt);
  46. if ('edit' == $opt) {
  47. // 清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表
  48. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  49. model('SqlCacheTable')->InsertSqlCacheTable(true);
  50. } else {
  51. // 处理mysql缓存表数据
  52. if (isset($post['arcrank']) && -1 == $post['arcrank'] && -1 == $post['old_arcrank'] && !empty($post['users_id'])) {
  53. // 待审核
  54. model('SqlCacheTable')->UpdateDraftSqlCacheTable($post, $opt);
  55. } else if (isset($post['arcrank'])) {
  56. // 已审核
  57. $post['old_typeid'] = intval($post['attr']['typeid']);
  58. model('SqlCacheTable')->UpdateSqlCacheTable($post, $opt, $table);
  59. }
  60. }
  61. }
  62. /**
  63. * 获取单条记录
  64. * @author wengxianhu by 2017-7-26
  65. */
  66. public function getInfo($aid, $field = null, $isshowbody = true)
  67. {
  68. $result = array();
  69. $field = !empty($field) ? $field : '*';
  70. $result = Db::name('archives')->field($field)
  71. ->where([
  72. 'aid' => $aid,
  73. 'lang' => get_admin_lang(),
  74. ])
  75. ->find();
  76. if ($isshowbody) {
  77. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  78. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  79. }
  80. // 文章TAG标签
  81. if (!empty($result)) {
  82. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  83. $tags = model('Taglist')->getListByAid($aid, $typeid);
  84. $result['tags'] = $tags['tag_arr'];
  85. $result['tag_id'] = $tags['tid_arr'];
  86. }
  87. return $result;
  88. }
  89. /**
  90. * 删除的后置操作方法
  91. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  92. * @param int $aid
  93. */
  94. public function afterDel($aidArr = array(), $table)
  95. {
  96. if (is_string($aidArr)) {
  97. $aidArr = explode(',', $aidArr);
  98. }
  99. // 同时删除内容
  100. Db::name($table.'_content')->where(array('aid'=>array('IN', $aidArr)))->delete();
  101. // 同时删除TAG标签
  102. model('Taglist')->delByAids($aidArr);
  103. }
  104. }