D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
spatie
/
laravel-medialibrary
/
src
/
Support
/
FileNamer
/
Filename :
DefaultFileNamer.php
back
Copy
<?php namespace Spatie\MediaLibrary\Support\FileNamer; use Spatie\MediaLibrary\Conversions\Conversion; class DefaultFileNamer extends FileNamer { public function conversionFileName(string $fileName, Conversion $conversion): string { $strippedFileName = pathinfo($fileName, PATHINFO_FILENAME); return "{$strippedFileName}-{$conversion->getName()}"; } public function responsiveFileName(string $fileName): string { return pathinfo($fileName, PATHINFO_FILENAME); } }