Storage Component
The storage component provides the possibility to upload files and images, also apply filters to images.
In general the storage component is configure by default and available via Yii::$app->storage
. The main component where all configuration options are display is the luya\admin\storage\BaseFileSystemStorage .
As storage can have different faces, for example local storage where all files are stored in @webroot/storage
or an Amazon S3 Adapter which stores all files in an Amazon S3 Bucket, by default the luya\admin\filesystem\LocalFileSystem is implement and configured.
This is the default configuration your config:
return [
// ...
'components' => [
'storage' => [
'class' => 'luya\admin\filesystem\LocalFileSystem',
],
]
]
This means the storage system is always a direct implementation of what type of file system is used. Here is an example file configuration if you need to have the option to upload insecure files like CSVs or SVGs:
return [
// ...
'components' => [
'storage' => [
'class' => 'luya\admin\filesystem\LocalFileSystem',
'whitelistExtensions' => ['csv', 'svg'],
'whitelistMimeTypes' => ['text/plain', 'image/svg+xml'], // as this is the mime type for csv files
]
]
]
Upload Files & Images
Working with storage component in admin, cronjob or frontend situations:
Take a look at luya\admin\storage\BaseFileSystemStorage .
Frontend Storage Upload
Uploading an image/file in a frontend form:
Take a look at luya\admin\ngrest\validators\StorageUploadValidator .