123456789101112131415161718192021222324252627 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: pl125 <xskjs888@163.com>
- // +----------------------------------------------------------------------
- namespace api\applet\model;
- use think\Model;
- class UserModel extends Model
- {
- /**
- * more 自动转化
- * @param $value
- * @return string
- */
- public function getAvatarAttr($value)
- {
- $value = !empty($value) ? cmf_get_image_url($value) : $value;
- return $value;
- }
- }
|