Hacked By AnonymousFox
<?php
/**
* Single line text field.
*
* @package WPForms
* @author WPForms
* @since 1.0.0
* @license GPL-2.0+
* @copyright Copyright (c) 2016, WPForms LLC
*/
class WPForms_Field_Text extends WPForms_Field {
/**
* Primary class constructor.
*
* @since 1.0.0
*/
public function init() {
// Define field type information.
$this->name = esc_html__( 'Single Line Text', 'wpforms' );
$this->type = 'text';
$this->icon = 'fa-text-width';
$this->order = 3;
// Define additional field properties.
add_filter( 'wpforms_field_properties_text', array( $this, 'field_properties' ), 5, 3 );
}
/**
* Define additional field properties.
*
* @since 1.4.5
*
* @param array $properties Field properties.
* @param array $field Field settings.
* @param array $form_data Form data.
*
* @return array
*/
public function field_properties( $properties, $field, $form_data ) {
// Input primary: Detect custom input mask.
if ( ! empty( $field['input_mask'] ) ) {
// Add class that will trigger custom mask.
$properties['inputs']['primary']['class'][] = 'wpforms-masked-input';
if ( false !== strpos( $field['input_mask'], 'alias:' ) ) {
$mask = str_replace( 'alias:', '', $field['input_mask'] );
$properties['inputs']['primary']['data']['inputmask-alias'] = $mask;
} elseif ( false !== strpos( $field['input_mask'], 'regex:' ) ) {
$mask = str_replace( 'regex:', '', $field['input_mask'] );
$properties['inputs']['primary']['data']['inputmask-regex'] = $mask;
} elseif ( false !== strpos( $field['input_mask'], 'date:' ) ) {
$mask = str_replace( 'date:', '', $field['input_mask'] );
$properties['inputs']['primary']['data']['inputmask-alias'] = 'datetime';
$properties['inputs']['primary']['data']['inputmask-inputformat'] = $mask;
} else {
$properties['inputs']['primary']['data']['inputmask-mask'] = $field['input_mask'];
}
}
return $properties;
}
/**
* Field options panel inside the builder.
*
* @since 1.0.0
*
* @param array $field Field settings.
*/
public function field_options( $field ) {
// -------------------------------------------------------------------//
// Basic field options.
// -------------------------------------------------------------------//
// Options open markup.
$this->field_option( 'basic-options', $field, array(
'markup' => 'open',
) );
// Label.
$this->field_option( 'label', $field );
// Description.
$this->field_option( 'description', $field );
// Required toggle.
$this->field_option( 'required', $field );
// Options close markup.
$this->field_option( 'basic-options', $field, array(
'markup' => 'close',
) );
// --------------------------------------------------------------------//
// Advanced field options.
// --------------------------------------------------------------------//
// Options open markup.
$this->field_option( 'advanced-options', $field, array(
'markup' => 'open',
) );
// Size.
$this->field_option( 'size', $field );
// Placeholder.
$this->field_option( 'placeholder', $field );
// Hide label.
$this->field_option( 'label_hide', $field );
// Default value.
$this->field_option( 'default_value', $field );
// Custom CSS classes.
$this->field_option( 'css', $field );
// Input Mask.
$lbl = $this->field_element(
'label',
$field,
array(
'slug' => 'input_mask',
'value' => esc_html__( 'Input Mask', 'wpforms' ),
'tooltip' => esc_html__( 'Enter your custom input mask.', 'wpforms' ),
'after_tooltip' => '<a href="https://wpforms.com/how-to-use-custom-input-masks/" class="after-label-description" target="_blank" rel="noopener noreferrer">' . esc_html__( 'See Examples & Docs', 'wpforms' ) . '</a>',
),
false
);
$fld = $this->field_element(
'text',
$field,
array(
'slug' => 'input_mask',
'value' => ! empty( $field['input_mask'] ) ? esc_attr( $field['input_mask'] ) : '',
),
false
);
$this->field_element( 'row', $field, array(
'slug' => 'input_mask',
'content' => $lbl . $fld,
) );
// Options close markup.
$this->field_option( 'advanced-options', $field, array(
'markup' => 'close',
) );
}
/**
* Field preview inside the builder.
*
* @since 1.0.0
*
* @param array $field Field settings.
*/
public function field_preview( $field ) {
// Define data.
$placeholder = ! empty( $field['placeholder'] ) ? esc_attr( $field['placeholder'] ) : '';
// Label.
$this->field_preview_option( 'label', $field );
// Primary input.
echo '<input type="text" placeholder="' . esc_attr( $placeholder ) . '" class="primary-input" disabled>';
// Description.
$this->field_preview_option( 'description', $field );
}
/**
* Field display on the form front-end.
*
* @since 1.0.0
*
* @param array $field Field settings.
* @param array $deprecated Deprecated.
* @param array $form_data Form data.
*/
public function field_display( $field, $deprecated, $form_data ) {
// Define data.
$primary = $field['properties']['inputs']['primary'];
// Primary field.
printf( '<input type="text" %s %s>',
wpforms_html_attributes( $primary['id'], $primary['class'], $primary['data'], $primary['attr'] ),
$primary['required']
); // WPCS: XSS ok.
}
}
new WPForms_Field_Text();
Hacked By AnonymousFox1.0, Coded By AnonymousFox