name = esc_html__( 'Field', 'et_builder' );
$this->plural = esc_html__( 'Fields', 'et_builder' );
$this->slug = 'et_pb_contact_field';
$this->vb_support = 'on';
$this->type = 'child';
$this->child_title_var = 'field_id';
$this->advanced_setting_title_text = esc_html__( 'New Field', 'et_builder' );
$this->settings_text = esc_html__( 'Field Settings', 'et_builder' );
$this->main_css_element = '.et_pb_contact_form_container %%order_class%%.et_pb_contact_field';
$this->settings_modal_toggles = array(
'general' => array(
'toggles' => array(
'main_content' => esc_html__( 'Text', 'et_builder' ),
'field_options' => esc_html__( 'Field Options', 'et_builder' ),
'conditional_logic' => esc_html__( 'Conditional Logic', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'layout' => esc_html__( 'Layout', 'et_builder' ),
),
),
);
$this->advanced_fields = array(
'borders' => array(
'default' => array(
'css' => array(
'main' => array(
'border_radii' => sprintf( '%1$s .input, %1$s .input[type="checkbox"] + label i, %1$s .input[type="radio"] + label i', $this->main_css_element ),
'border_styles' => sprintf( '%1$s .input, %1$s .input[type="checkbox"] + label i, %1$s .input[type="radio"] + label i', $this->main_css_element ),
),
'important' => 'plugin_only',
),
'label_prefix' => esc_html__( 'Input', 'et_builder' ),
),
),
'box_shadow' => array(
'default' => array(
'css' => array(
'main' => implode( ', ', array(
'%%order_class%% input',
'%%order_class%% select',
'%%order_class%% textarea',
'%%order_class%% .et_pb_contact_field_options_list label > i',
) ),
'important' => true,
),
),
),
'fonts' => array(
'form_field' => array(
'label' => esc_html__( 'Field', 'et_builder' ),
'css' => array(
'main' => implode( ',', array(
"%%order_class%%.et_pb_contact_field .et_pb_contact_field_options_title",
"{$this->main_css_element} .input",
"{$this->main_css_element} .input::placeholder",
"{$this->main_css_element} .input::-webkit-input-placeholder",
"{$this->main_css_element} .input::-moz-placeholder",
"{$this->main_css_element} .input:-ms-input-placeholder",
"{$this->main_css_element} .input[type=checkbox] + label",
"{$this->main_css_element} .input[type=radio] + label",
) ),
'important' => 'plugin_only',
),
),
),
'background' => array(
'css' => array(
'main' => '%%order_class%%',
),
),
'margin_padding' => array(
'css' => array(
'padding' => 'p%%order_class%%',
'important' => array( 'custom_margin' ), // needed to overwrite last module margin-bottom styling
),
),
'text' => array(
'css' => array(
'text_orientation' => '%%order_class%% input, %%order_class%% textarea, %%order_class%% label',
),
),
'text_shadow' => array(
// Don't add text-shadow fields since they already are via font-options
'default' => false,
),
'filters' => array(
'css' => array(
'main' => array(
'%%order_class%% input',
'%%order_class%% textarea',
'%%order_class%% label',
),
),
),
'button' => false,
);
}
function get_fields() {
$labels = array(
'link_url' => esc_html__( 'Link URL', 'et_builder' ),
'link_text' => esc_html__( 'Link Text', 'et_builder' ),
'link_cancel' => esc_html__( 'Discard Changes', 'et_builder' ),
'link_save' => esc_html__( 'Save Changes', 'et_builder' ),
'link_settings' => esc_html__( 'Option Link', 'et_builder' ),
);
$fields = array(
'field_id' => array(
'label' => esc_html__( 'Field ID', 'et_builder' ),
'type' => 'text',
'description' => esc_html__( 'Define the unique ID of this field. You should use only English characters without special characters and spaces.', 'et_builder' ),
'toggle_slug' => 'main_content',
'default_on_front' => '',
),
'field_title' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'type' => 'text',
'description' => esc_html__( 'Here you can define the content that will be placed within the current tab.', 'et_builder' ),
'toggle_slug' => 'main_content',
'default_on_front' => esc_html__( 'New Field', 'et_builder' ),
),
'field_type' => array(
'label' => esc_html__( 'Type', 'et_builder' ),
'type' => 'select',
'default' => 'input',
'option_category' => 'basic_option',
'options' => array(
'input' => esc_html__( 'Input Field', 'et_builder' ),
'email' => esc_html__( 'Email Field', 'et_builder' ),
'text' => esc_html__( 'Textarea', 'et_builder' ),
'checkbox' => esc_html__( 'Checkboxes', 'et_builder' ),
'radio' => esc_html__( 'Radio Buttons', 'et_builder' ),
'select' => esc_html__( 'Select Dropdown', 'et_builder' ),
),
'description' => esc_html__( 'Choose the type of field', 'et_builder' ),
'affects' => array(
'checkbox_options',
'radio_options',
'select_options',
'min_length',
'max_length',
'allowed_symbols',
),
'toggle_slug' => 'field_options',
),
'checkbox_checked' => array(
'label' => esc_html__( 'Checked By Default', 'et_builder' ),
'type' => 'hidden',
'option_category' => 'layout',
'default' => 'off',
'depends_show_if' => 'checkbox',
'toggle_slug' => 'field_options',
),
'checkbox_options' => array(
'label' => esc_html__( 'Options', 'et_builder' ),
'type' => 'sortable_list',
'checkbox' => true,
'option_category' => 'basic_option',
'depends_show_if' => 'checkbox',
'toggle_slug' => 'field_options',
'right_actions' => 'move|link|copy|delete',
'labels' => $labels,
),
'radio_options' => array(
'label' => esc_html__( 'Options', 'et_builder' ),
'type' => 'sortable_list',
'radio' => true,
'option_category' => 'basic_option',
'depends_show_if' => 'radio',
'toggle_slug' => 'field_options',
'right_actions' => 'move|link|copy|delete',
'labels' => $labels,
),
'select_options' => array(
'label' => esc_html__( 'Options', 'et_builder' ),
'type' => 'sortable_list',
'option_category' => 'basic_option',
'depends_show_if' => 'select',
'toggle_slug' => 'field_options',
),
'min_length' => array(
'label' => esc_html__( 'Minimum Length', 'et_builder' ),
'description' => esc_html__( 'Leave at 0 to remove restriction', 'et_builder' ),
'type' => 'range',
'default' => '0',
'unitless' => true,
'range_settings' => array(
'min' => '0',
'max' => '255',
'step' => '1',
),
'option_category' => 'basic_option',
'depends_show_if' => 'input',
'toggle_slug' => 'field_options',
),
'max_length' => array(
'label' => esc_html__( 'Maximum Length', 'et_builder' ),
'description' => esc_html__( 'Leave at 0 to remove restriction', 'et_builder' ),
'type' => 'range',
'default' => '0',
'unitless' => true,
'range_settings' => array(
'min' => '0',
'max' => '255',
'step' => '1',
),
'option_category' => 'basic_option',
'depends_show_if' => 'input',
'toggle_slug' => 'field_options',
),
'allowed_symbols' => array(
'label' => esc_html__( 'Allowed Symbols', 'et_builder' ),
'type' => 'select',
'default' => 'all',
'options' => array(
'all' => esc_html__( 'All', 'et_builder' ),
'letters' => esc_html__( 'Letters Only (A-Z)', 'et_builder' ),
'numbers' => esc_html__( 'Numbers Only (0-9)', 'et_builder' ),
'alphanumeric' => esc_html__( 'Alphanumeric Only (A-Z, 0-9)', 'et_builder' ),
),
'option_category' => 'basic_option',
'depends_show_if' => 'input',
'toggle_slug' => 'field_options',
),
'required_mark' => array(
'label' => esc_html__( 'Required Field', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'configuration',
'default' => 'on',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'description' => esc_html__( 'Define whether the field should be required or optional', 'et_builder' ),
'toggle_slug' => 'field_options',
),
'fullwidth_field' => array(
'label' => esc_html__( 'Make Fullwidth', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'layout',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'tab_slug' => 'advanced',
'toggle_slug' => 'layout',
'description' => esc_html__( 'If enabled, the field will take 100% of the width of the content area, otherwise it will take 50%', 'et_builder' ),
'default_on_front' => 'off',
),
'conditional_logic' => array(
'label' => esc_html__( 'Enable', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'layout',
'default' => 'off',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'affects' => array(
'conditional_logic_rules',
'conditional_logic_relation',
),
'description' => et_get_safe_localization( __( "Enabling conditional logic makes this field only visible when any or all of the rules below are fulfilled
Note: Only fields with an unique and non-empty field ID can be used", 'et_builder' ) ),
'toggle_slug' => 'conditional_logic',
),
'conditional_logic_relation' => array(
'label' => esc_html__( 'Relation', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'layout',
'options' => array(
'on' => esc_html__( 'All', 'et_builder' ),
'off' => esc_html__( 'Any', 'et_builder' ),
),
'default' => 'off',
'button_options' => array(
'button_type' => 'equal',
),
'depends_show_if' => 'on',
'description' => esc_html__( 'Choose whether any or all of the rules should be fulfilled', 'et_builder' ),
'toggle_slug' => 'conditional_logic',
),
'conditional_logic_rules' => array(
'label' => esc_html__( 'Rules', 'et_builder' ),
'type' => 'conditional_logic',
'option_category' => 'layout',
'depends_show_if' => 'on',
'toggle_slug' => 'conditional_logic',
),
'field_background_color' => array(
'label' => esc_html__( 'Field Background Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'toggle_slug' => 'form_field',
'hover' => 'tabs',
'tab_slug' => 'advanced',
),
);
return $fields;
}
public function get_transition_fields_css_props() {
$fields = parent::get_transition_fields_css_props();
$fields['field_background_color'] = array(
'background' => implode( ', ', array(
'%%order_class%% .input',
'%%order_class%% .input + label:hover i'
) )
);
return $fields;
}
function render( $attrs, $content = null, $render_slug ) {
global $et_pb_half_width_counter, $et_pb_contact_form_num;
et_core_nonce_verified_previously();
$field_title = $this->props['field_title'];
$field_type = $this->props['field_type'];
$field_id = $this->props['field_id'];
$required_mark = $this->props['required_mark'];
$fullwidth_field = $this->props['fullwidth_field'];
$form_field_text_color = $this->props['form_field_text_color'];
$field_background_color = $this->props['field_background_color'];
$field_bg_color_hover = et_pb_hover_options()->get_value( 'field_background_color', $this->props );
$checkbox_checked = $this->props['checkbox_checked'];
$checkbox_options = $this->props['checkbox_options'];
$radio_options = $this->props['radio_options'];
$select_options = $this->props['select_options'];
$min_length = $this->props['min_length'];
$max_length = $this->props['max_length'];
$conditional_logic = $this->props['conditional_logic'];
$conditional_logic_relation = $this->props['conditional_logic_relation'];
$conditional_logic_rules = $this->props['conditional_logic_rules'];
$allowed_symbols = $this->props['allowed_symbols'];
$render_count = $this->render_count();
$current_module_num = '' === $et_pb_contact_form_num ? 0 : intval( $et_pb_contact_form_num ) + 1;
// set a field ID.
if ( '' === $field_id ) {
$field_id = sprintf( 'field_%d_%d', $et_pb_contact_form_num, $render_count );
}
if ( 'et_pb_signup_custom_field' === $render_slug ) {
$this->add_classname( 'et_pb_newsletter_field' );
} else {
$field_id = strtolower( $field_id );
}
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
$et_pb_half_width_counter = ! isset( $et_pb_half_width_counter ) ? 0 : $et_pb_half_width_counter;
// count fields to add the et_pb_contact_field_last properly
if ( 'off' === $fullwidth_field ) {
$et_pb_half_width_counter++;
} else {
$et_pb_half_width_counter = 0;
}
$input_field = '';
if ( '' !== $form_field_text_color ) {
if ( 'checkbox' === $field_type ) {
ET_Builder_Element::set_style( $render_slug, array(
'selector' => '%%order_class%% .input + label, %%order_class%% .input + label i:before',
'declaration' => sprintf(
'color: %1$s !important;',
esc_html( $form_field_text_color )
),
) );
}
if ( 'radio' === $field_type ) {
ET_Builder_Element::set_style( $render_slug, array(
'selector' => '%%order_class%% .input + label',
'declaration' => sprintf(
'color: %1$s !important;',
esc_html( $form_field_text_color )
),
) );
ET_Builder_Element::set_style( $render_slug, array(
'selector' => '%%order_class%% .input + label i:before',
'declaration' => sprintf(
'background-color: %1$s !important;',
esc_html( $form_field_text_color )
),
) );
}
}
if ( '' !== $field_background_color ) {
$input_selector = '%%order_class%% .input';
if ( in_array( $field_type, array( 'checkbox', 'radio' ) ) ) {
$input_selector = '%%order_class%% .input + label i';
}
ET_Builder_Element::set_style( $render_slug, array(
'selector' => $input_selector,
'declaration' => sprintf(
'background-color: %1$s !important;',
esc_html( $field_background_color )
),
) );
}
if ( !empty( $field_bg_color_hover ) && et_pb_hover_options()->is_enabled( 'field_background_color', $this->props ) ) {
$input_selector = '%%order_class%% .input:hover';
if ( in_array( $field_type, array( 'checkbox', 'radio' ) ) ) {
$input_selector = '%%order_class%% .input + label:hover i';
}
ET_Builder_Element::set_style( $render_slug, array(
'selector' => $input_selector,
'declaration' => sprintf(
'background-color: %1$s !important;',
esc_html( $field_bg_color_hover )
),
) );
}
$pattern = '';
$title = '';
$min_length = intval( $min_length );
$max_length = intval( $max_length );
$max_length_attr = '';
$symbols_pattern = '.';
$length_pattern = '*';
if ( in_array( $allowed_symbols, array( 'letters', 'numbers', 'alphanumeric' ) ) ) {
switch ( $allowed_symbols ) {
case 'letters':
$symbols_pattern = '[A-Z|a-z]';
$title = __( 'Only letters allowed.', 'et_builder' );
break;
case 'numbers':
$symbols_pattern = '[0-9]';
$title = __( 'Only numbers allowed.', 'et_builder' );
break;
case 'alphanumeric':
$symbols_pattern = '[A-Z|a-z|0-9]';
$title = __( 'Only letters and numbers allowed.', 'et_builder' );
break;
}
}
if ( 0 !== $min_length && 0 !== $max_length ) {
$max_length = max( $min_length, $max_length );
$min_length = min( $min_length, $max_length );
if ( $max_length > 0 ) {
$max_length_attr = sprintf(
' maxlength="%1$d"',
$max_length
);
}
}
if ( 0 !== $min_length || 0 !== $max_length ) {
$length_pattern = '{';
if ( 0 !== $min_length ) {
$length_pattern .= $min_length;
$title .= sprintf( __( 'Minimum length: %1$d characters. ', 'et_builder' ), $min_length );
}
if ( 0 === $max_length ) {
$length_pattern .= ',';
}
if ( 0 === $min_length ) {
$length_pattern .= '0';
}
if ( 0 !== $max_length ) {
$length_pattern .= ",{$max_length}";
$title .= sprintf( __( 'Maximum length: %1$d characters.', 'et_builder' ), $max_length );
}
$length_pattern .= '}';
}
if ( '.' !== $symbols_pattern || '*' !== $length_pattern ) {
$pattern = sprintf(
' pattern="%1$s%2$s"',
esc_attr( $symbols_pattern ),
esc_attr( $length_pattern )
);
}
if ( '' !== $title ) {
$title = sprintf(
' title="%1$s"',
esc_attr( $title )
);
}
$conditional_logic_attr = '';
if ( 'on' === $conditional_logic && ! empty( $conditional_logic_rules ) ) {
$option_search = array( '[', ']' );
$option_replace = array( '[', ']' );
$conditional_logic_rules = str_replace( $option_search, $option_replace, $conditional_logic_rules );
$condition_rows = json_decode( $conditional_logic_rules );
$ruleset = array();
foreach ( $condition_rows as $condition_row ) {
$condition_value = isset( $condition_row->value ) ? $condition_row->value : '';
$condition_value = trim( $condition_value );
$ruleset[] = array(
$condition_row->field,
$condition_row->condition,
$condition_value,
);
}
if ( ! empty( $ruleset ) ) {
$json = json_encode( $ruleset );
$relation = $conditional_logic_relation === 'off' ? 'any' : 'all';
$conditional_logic_attr = sprintf(
' data-conditional-logic="%1$s" data-conditional-relation="%2$s"',
esc_attr( $json ),
$relation
);
}
}
switch( $field_type ) {
case 'text':
case 'textarea':
$input_field = sprintf(
'',
( isset( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ? esc_html( sanitize_text_field( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ) : '' ),
esc_attr( $current_module_num ),
esc_attr( $field_id ),
esc_attr( $field_type ),
esc_attr( $field_title ),
'off' === $required_mark ? 'not_required' : 'required'
);
break;
case 'input' :
case 'email' :
if ( 'email' === $field_type ) {
$pattern = '';
}
$input_field = sprintf(
'',
( isset( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ? esc_attr( sanitize_text_field( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ) : '' ),
esc_attr( $current_module_num ),
esc_attr( $field_id ),
esc_attr( $field_type ),
esc_attr( $field_title ),
'off' === $required_mark ? 'not_required' : 'required',
$pattern,
$title,
$max_length_attr
);
break;
case 'checkbox' :
$input_field = '';
if ( ! $checkbox_options ) {
$is_checked = ! empty( $checkbox_checked ) && 'on' === $checkbox_checked;
$checkbox_options = sprintf(
'[{"value":"%1$s","checked":%2$s}]',
esc_attr( $field_title ),
$is_checked ? 1 : 0
);
$field_title = '';
}
$option_search = array( '[', ']' );
$option_replace = array( '[', ']' );
$checkbox_options = str_replace( $option_search, $option_replace, $checkbox_options );
$checkbox_options = json_decode( $checkbox_options );
foreach ( $checkbox_options as $index => $option ) {
$is_checked = 1 === $option->checked ? true : false;
$option_value = wp_strip_all_tags( $option->value );
$drag_id = isset( $option->dragID ) ? $option->dragID : '';
$option_id = isset( $option->id ) ? $option->id : $drag_id;
$option_id = sprintf( ' data-id="%1$s"', esc_attr( $option_id ) );
$option_link = '';
if ( ! empty( $option->link_url ) ) {
$link_text = isset( $option->link_text ) ? $option->link_text : '';
$option_link = sprintf( ' %2$s', esc_url( $option->link_url ), esc_html( $link_text ) );
}
$input_field .= sprintf(
'
',
esc_attr( $field_id ),
esc_attr( $option_value ),
esc_attr( $index ),
$is_checked ? ' checked="checked"' : '',
esc_attr( $render_count ), // #5
$option_id,
$option_link // #7
);
}
$input_field = sprintf(
'
',
esc_attr( $field_id ),
esc_attr( $field_type ),
'off' === $required_mark ? 'not_required' : 'required',
esc_attr( $current_module_num ),
esc_html( $field_title ),
$input_field
);
break;
case 'radio' :
$input_field = '';
if ( $radio_options ) {
$option_search = array( '[', ']' );
$option_replace = array( '[', ']' );
$radio_options = str_replace( $option_search, $option_replace, $radio_options );
$radio_options = json_decode( $radio_options );
foreach ( $radio_options as $index => $option ) {
$is_checked = 1 === $option->checked ? true : false;
$drag_id = isset( $option->dragID ) ? $option->dragID : '';
$option_id = isset( $option->id ) ? $option->id : $drag_id;
$option_id = sprintf( ' data-id="%1$s"', esc_attr( $option_id ) );
$option_link = '';
if ( ! empty( $option->link_url ) ) {
$link_text = isset( $option->link_text ) ? $option->link_text : '';
$option_link = sprintf( ' %2$s', esc_url( $option->link_url ), esc_html( $link_text ) );
}
$input_field .= sprintf(
'
',
( isset( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ? esc_attr( sanitize_text_field( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ) : '' ),
esc_attr( $current_module_num ),
esc_attr( $field_id ),
esc_attr( $field_type ),
esc_attr( $field_title ), // #5
'off' === $required_mark ? 'not_required' : 'required',
esc_attr( $index ),
wp_strip_all_tags( $option->value ),
checked( $is_checked, true, false ),
esc_attr( $render_count ), // #10
$option_id,
$option_link // #12
);
}
} else {
$input_field .= esc_html__( 'No options added.', 'et_builder' );
}
$input_field = sprintf(
' ',
esc_html( $field_title ),
$input_field
);
break;
case 'select' :
$options = sprintf(
'',
esc_attr( $field_title )
);
if ( $select_options ) {
$option_search = array( '[', ']' );
$option_replace = array( '[', ']' );
$select_options = str_replace( $option_search, $option_replace, $select_options );
$select_options = json_decode( $select_options );
foreach ( $select_options as $option ) {
$option_id = isset( $option->id ) ? sprintf( ' data-id="%1$s"', esc_attr( $option->id ) ) : '';
$options .= sprintf(
'',
esc_attr( wp_strip_all_tags( $option->value ) ),
wp_strip_all_tags( $option->value ),
$option_id
);
}
}
$input_field = sprintf(
'',
( isset( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ? esc_attr( sanitize_text_field( $_POST['et_pb_contact_' . $field_id . '_' . $current_module_num] ) ) : '' ),
esc_attr( $current_module_num ),
esc_attr( $field_id ),
esc_attr( $field_type ),
esc_attr( $field_title ),
'off' === $required_mark ? 'not_required' : 'required',
$options
);
break;
}
// Module classnames
$this->add_classname( array(
$this->get_text_orientation_classname(),
) );
if ( 'off' === $fullwidth_field ) {
$this->add_classname( 'et_pb_contact_field_half' );
}
if ( 0 === $et_pb_half_width_counter % 2 ) {
$this->add_classname( 'et_pb_contact_field_last' );
}
if ( 'on' === self::$_->array_get( $this->props, 'hidden' ) ) {
$this->add_classname( 'et_pb_contact_field--hidden' );
}
// Remove automatically added classname
$this->remove_classname( 'et_pb_module' );
$output = sprintf(
'
%9$s %8$s %4$s
', esc_html( $field_title ), esc_attr( $current_module_num ), esc_attr( $field_id ), $input_field, $this->module_classname( $render_slug ), $conditional_logic_attr, $field_type, $video_background, $parallax_image_background ); return $output; } } new ET_Builder_Module_Contact_Form_Item;