Usage
Assets Import
Import asset volumes to organize your media files.

Columns
| Column | Required | Description |
|---|---|---|
handle | Yes | Unique identifier |
name | Yes | Display name |
fsHandle | Yes | Filesystem handle (must exist) |
subpath | No | Subpath within filesystem |
transformFsHandle | No | Filesystem for image transforms (must exist) |
transformSubpath | No | Subpath for transforms |
titleTranslationMethod | No | How titles are translated |
titleTranslationKeyFormat | No | Custom title translation key |
altTranslationMethod | No | How alt text is translated |
altTranslationKeyFormat | No | Custom alt translation key |
Example
handle,name,fsHandle,subpath,transformFsHandle,transformSubpath,titleTranslationMethod,titleTranslationKeyFormat,altTranslationMethod,altTranslationKeyFormat
images,Images,images,images,images,/images/transforms,Translate for each site,,Custom…,{{include('global/site.twig')}}
graphics,Graphics,graphics,,,,Custom…,{{include('global/site.twig')}},,
Prerequisites
The filesystem referenced by fsHandle must exist before importing asset volumes. Import filesystems first, then assets.
Transform Filesystem
Use a separate filesystem for image transforms to keep originals and transforms organized:
handle,name,fsHandle,subpath,transformFsHandle,transformSubpath
images,Images,assets,images,assets,_transforms/images
Translation Methods
Same as entry types:
| Value | Description |
|---|---|
none | Not translatable |
site | Translate per site |
siteGroup | Translate per site group |
language | Translate per language |
custom | Use custom key format |