visiosoft / list-field_type
A List Field Type.
Installs: 8 321
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:streams-addon
This package is auto-updated.
Last update: 2024-10-27 22:10:15 UTC
README
What is this repository for?
A simple list field-type for Pyrocms 3 that allows you to add dynamic lists to items without end users breaking the layout.
Reorder, Add more lines, remove them
How do I use this?
Returns an array of values {{ visiosoft.field_type.list.values }}
Returns the number of list items {{ visiosoft.field_type.list.count }}
Configuration
Below is the full configuration available with defaults.
protected $fields = [
"example" => [
"type" => "emange.field_type.list",
"config" => [
"min" => null,
"max" => null
]
]
];
Basic Configuration
Default Value
"default_type" => "text"
The default_value
allows you to set the input type for validation. Supports text and email.
Usage
Setting Values
You must set the list field type value with a value or values from the available options.
$entry->example = "foo";
You can set multiple values with an array.
$entry->example = ["foo", "bar"];
Basic Output
The list field type returns an array of values.
$entry->example->values; // ["foo", "bar"];