UserModel.php 775 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: pl125 <xskjs888@163.com>
  8. // +----------------------------------------------------------------------
  9. namespace api\applet\model;
  10. use think\Model;
  11. class UserModel extends Model
  12. {
  13. /**
  14. * more 自动转化
  15. * @param $value
  16. * @return string
  17. */
  18. public function getAvatarAttr($value)
  19. {
  20. $value = !empty($value) ? cmf_get_image_url($value) : $value;
  21. return $value;
  22. }
  23. }