70 lines
2.2 KiB
PHP
70 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Redux Repeater Sample config.
|
|
*
|
|
* For full documentation, please visit: http://docs.reduxframework.com/
|
|
*
|
|
* @package Redux Pro
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
Redux::set_section(
|
|
$opt_name,
|
|
array(
|
|
'title' => __( 'Repeater', 'your-textdomain-here' ),
|
|
'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="//docs.reduxframework.com/extensions/repeater" target="_blank">docs.reduxframework.com/extensions/repeater</a>',
|
|
'subsection' => true,
|
|
'fields' => array(
|
|
array(
|
|
'id' => 'repeater-field-id2',
|
|
'type' => 'repeater',
|
|
'title' => esc_html__( 'Repeater Demo', 'your-textdomain-here' ),
|
|
'full_width' => true,
|
|
'subtitle' => esc_html__( 'Repeater', 'your-textdomain-here' ),
|
|
'item_name' => '',
|
|
'sortable' => true,
|
|
'active' => false,
|
|
'collapsible' => false,
|
|
'fields' => array(
|
|
array(
|
|
'id' => 'title_field',
|
|
'type' => 'text',
|
|
'placeholder' => esc_html__( 'Title', 'your-textdomain-here' ),
|
|
),
|
|
array(
|
|
'id' => 'textarea_field',
|
|
'type' => 'textarea',
|
|
'placeholder' => esc_html__( 'Text Field', 'your-textdomain-here' ),
|
|
'default' => 'Text Field here',
|
|
),
|
|
array(
|
|
'id' => 'select_field',
|
|
'type' => 'select',
|
|
'title' => esc_html__( 'Select Field', 'your-textdomain-here' ),
|
|
'options' => array(
|
|
'1' => esc_html__( 'Option 1', 'your-textdomain-here' ),
|
|
'2' => esc_html__( 'Option 2', 'your-textdomain-here' ),
|
|
'3' => esc_html__( 'Option 3', 'your-textdomain-here' ),
|
|
),
|
|
'placeholder' => esc_html__( 'Listing Field', 'your-textdomain-here' ),
|
|
),
|
|
array(
|
|
'id' => 'switch_field',
|
|
'type' => 'switch',
|
|
'placeholder' => esc_html__( 'Switch Field', 'your-textdomain-here' ),
|
|
'default' => true,
|
|
),
|
|
array(
|
|
'id' => 'text_field',
|
|
'type' => 'text',
|
|
'placeholder' => esc_html__( 'Text Field', 'your-textdomain-here' ),
|
|
'required' => array( 'switch_field', '=', false ),
|
|
'default' => 'Text Field here',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
)
|
|
);
|