Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/plugins/redux-framework/sample/sections/extensions/ |
Upload File : |
<?php /** * Redux Repeater Sample config. * For full documentation, please visit: http:https://devs.redux.io/ * * @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="https://devs.redux.io/core-extensions/repeater.html" target="_blank">https://devs.redux.io/core-extensions/repeater.html</a>', 'subsection' => true, 'fields' => array( array( 'id' => 'repeater-field-id', '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', 'title' => esc_html__( 'Title', 'your-domain-here' ), ), array( 'id' => 'select_field', 'type' => 'select', 'multi' => true, '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', 'title' => esc_html__( 'Text Field', 'your-textdomain-here' ), 'type' => 'text', 'placeholder' => esc_html__( 'Text Field', 'your-textdomain-here' ), 'required' => array( 'switch_field', '=', false ), 'default' => 'Text Field here', ), ), ), ), ) );