Attachment.php 829 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * ----------------------------------------------------------------------------
  4. * 行到水穷处,坐看云起时
  5. * 开发软件,找贵阳云起信息科技,官网地址:https://www.56q7.com/
  6. * ----------------------------------------------------------------------------
  7. * Author: 老成
  8. * email:85556713@qq.com
  9. */
  10. declare(strict_types=1);
  11. namespace app\common\model;
  12. use think\Model;
  13. class Attachment extends Model{
  14. public static function getCategory()
  15. {
  16. $category=site_config("dictionary.filegroup");
  17. return $category;
  18. }
  19. public static function getDisksType():array
  20. {
  21. $disks=config('filesystem.disks');
  22. $disksType=[];
  23. foreach($disks as $key=>$value){
  24. $disksType[$key]=$value['name'];
  25. }
  26. return $disksType;
  27. }
  28. }