1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\model;
-
-
- use app\common\basics\Models;
- use app\common\server\UrlServer;
-
- class File extends Models
- {
-
-
- public static function getUriAttr($value)
- {
- return $value ? UrlServer::getFileUrl($value) : '';
- }
- }
|