Add illustrations to radio buttons.
This plugin is completely free and published under the MIT license. However, if you are using it in a commercial project and want to help me keep up with maintenance, please consider making a donation of your choice.
Kirby 3: Up to 1.0.5. Kirby 4: 2.0.0+
Download and copy this repository to /site/plugins/imageradio
Alternatively, you can install it with composer: composer require sylvainjule/imageradio
The field is best used with the columns
option set.
If the field's options are hardcoded, images need to be placed in the assets/images
folder of your installation.
The image
value must be a filename, the field will automatically prefix it with the correct path.
myimageradio:
label: Pick a theme
type: imageradio
columns: 3
options:
light:
text: Light theme
image: light.jpg
dark:
text: Dark theme
image: dark.jpg
blue:
text: Blue theme
image: blue.jpg
The field is compatible with both query
and api
fetch. You need to explicitely set the result text, stored value and image url.
The image
value must return an absolute url.
myimageradio:
label: Pick a theme
type: imageradio
columns: 3
options: query
query:
fetch: page.images
text: "{{ file.filename }}"
value: "{{ file.id }}"
image: "{{ file.resize(512).url }}"
Notice the {{ file.resize(512).url }}
instead of {{ file.url }}
. Two reasons for this:
512
is the default value of the Files field's thumbs. Therefore it is likely that the thumb will have already been created. I recommend using a resize
number already used by the panel (128, 256, 512, 768, 1024).
baseUrl
If you want the images to be queried from a different location than the assets/images
folder, you can set the baseUrl
option in your config.php
file to whatever folder you'd like. For example:
'sylvainjule.imageradio.baseUrl' => '{{ kirby.url("assets") }}/my-custom-folder',
ratio
The ratio of the image container, to be adjusted depending on your images. Default is 1/1
.
myimageradio:
type: imageradio
ratio: 1/1
fit
Defines how the image should fit within its container, either contain
or cover
. Default is cover
.
myimageradio:
type: imageradio
fit: cover
back
Defines the background behind transparent / contained images. Accepts any CSS-valid property for the background
property. Default is false
.
myimageradio:
type: imageradio
back: white # or '#fefefe', or 'rgb(255, 0, 255)', etc.
mobile
By default, images are not displayed when the panel switches to its mobile view. Not recommended, but if you want to override this, set the option to true
.
myimageradio:
type: imageradio
mobile: false
MIT