44 lines
990 B
PHP
44 lines
990 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Template Select Options
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file contains the options for select, multiselect, checkboxlist,
|
|
| radio, and togglebuttons fields in dynamic templates.
|
|
|
|
|
| Format: 'field_name' => ['key' => 'Label']
|
|
|
|
|
*/
|
|
|
|
// Example options - Add your own as needed
|
|
'example_select' => [
|
|
'option_1' => 'Option 1',
|
|
'option_2' => 'Option 2',
|
|
'option_3' => 'Option 3',
|
|
],
|
|
|
|
'status' => [
|
|
'active' => 'Active',
|
|
'inactive' => 'Inactive',
|
|
'pending' => 'Pending',
|
|
],
|
|
|
|
'size' => [
|
|
'small' => 'Small',
|
|
'medium' => 'Medium',
|
|
'large' => 'Large',
|
|
],
|
|
|
|
'color_scheme' => [
|
|
'light' => 'Light',
|
|
'dark' => 'Dark',
|
|
'auto' => 'Auto',
|
|
],
|
|
|
|
// Add more options as needed
|
|
];
|
|
|