PagesItems.php 857 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace app\common\models\shop;
  10. use app\common\models\Model;
  11. class PagesItems extends Model {
  12. protected $name = "pages_items";
  13. public function setWidgetNameAttr($value){
  14. return strip_tags(trim($value));
  15. }
  16. public function setParamsAttr($value){
  17. return json_encode($value,JSON_UNESCAPED_UNICODE);
  18. }
  19. public function getParamsAttr($value){
  20. return json_decode($value,true);
  21. }
  22. }