Hi all,
for a current project, there’s the rather basic requirement to restrict the file type upload to .mp3 for a particular category of entries. My attempts were met by unexpected resistance by Kirby’s structure. Initially, I expected this to be a simple property of the files field.
Here’s the blueprint I currently use:
title: Entry
preset: page
fields:
text:
label: Text
type: textarea
size: large
uploads: false
required: true
buttons:
- bold
- italic
- '|'
- link
- '|'
- ul
- ol
sidebar:
meta:
type: fields
fields:
date:
label: Published on
type: date
time: true
default: now
audiofile:
label: Audio
type: files
multiple: false
pdf:
label: PDF
type: files
multiple: false
The state of my research thus far:
- The files field apparently doesn’t provide this property (Files | Kirby CMS).
- It appears that the restrictions are set via a file blueprint (File blueprint | Kirby CMS).
- The examples show how to create file blueprints but not how to apply them (File blueprints | Kirby CMS).
- Searching this forum yielded the insight that sections can do that by setting a “template” property, which is actually a file blueprint (Files section | Kirby CMS).
As you can see from the blueprint above, I’m using a default page preset. Ideally, the audio field should restrict to .mp3 and the PDF field to .pdf extensions.
I’m confused as to how to implement the file type restriction in the above blueprint. Is this even possible or does the current Kirby structure require me to completely rewrite the blueprint to use sections? If so, how?