截流自动化的商城平台
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.

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace app\common\model\content;
  3. use app\common\basics\Models;
  4. class Help extends Models
  5. {
  6. /**
  7. * @Notes: 关联帮助分类模型
  8. * @Author: 张无忌
  9. */
  10. public function category()
  11. {
  12. return $this->hasOne('HelpCategory', 'id', 'cid');
  13. }
  14. public function setContentAttr($value,$data)
  15. {
  16. $content = $data['content'];
  17. if (!empty($content)) {
  18. $content = HtmlSetImage($content);
  19. }
  20. return $content;
  21. }
  22. public function getContentAttr($value,$data)
  23. {
  24. $content = $data['content'];
  25. if (!empty($content)) {
  26. $content = HtmlGetImage($content);
  27. }
  28. return $content;
  29. }
  30. }