Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

For a software dev like me who has no idea how to create a cute hand-drawn dashed line, this course just 100% works.

— Ira Zayats, Developer

Array Fieldtype

Manage data in a key:value array format.

Array Fieldtype UI
The Array Fieldtype in action!

Overview

This fieldtype is used to manage key: value array data in the right situation. It's used for situations when there is data you would like to stay grouped together because there's only one set and you don't want to use loops.

If you'd like to have lists of this type of data, you might want to use a grid or replicator field.

Modes

The screenshot above depicts the two modes you can choose from. One for when you know there is a fixed set of keys (keyed), and one for when you don't (dynamic).

Keyed Mode

The first field contains pre-defined keys. This will give the user a stricter input. They can only enter the values for the specified keys, and they cannot be reordered.

address:
type: array
keys:
street: Street
city: City
country: Country

The keys can be specified with or without labels. The snippet above (and what's shown in the screenshot) uses labels.

The following is an example of just keys. When using this syntax, the key and the label will be identical.

keys:
- street
- city
- country

Dynamic Mode

The second field contains no pre-defined keys. This will allow the user to define them on the fly and re-arrange them.

address:
type: array

Column headings can be set with value_header & key_header.

value_header: Type of Bacon
key_header: Why is it awesome?

Data Structure

In the example above, both fields would save the exact same data.

address:
street: 221B Baker Street
city: London
country: England

Templating

This fieldtype is not augmented.

You can use basic array access, nested variables, or the foreach tag to loop through all of the keys. All three of the following methods are equivalent.

// Array access
{{ address }}
{{ street }} {{ city }} {{ country }}
{{ /address }}
 
// Nested variables
{{ address:street }} {{ address:city }} {{ address:country }}
 
// Foreach tag:
{{ foreach:address }}
{{ value }}
{{ /foreach:address }}

Options

keys

array

Define keys when using keyed mode. Default: null.

mode

string

Determine which mode to use. Default: dynamic.

value_header

string

Value column heading displayed when using dynamic mode Default: Value.

key_header

string

Key column heading displayed when using dynamic mode Default: Key.

add_button

string

Add button text customization. Default: Add Row.

Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →