✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium290.web-hosting.com ​🇻​♯➤ 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 63.250.38.37 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.224
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/tdhomesa/public_html/wp-content/plugins/forminator/library/fields//textarea.php
<?php
/**
 * The Forminator_Textarea class.
 *
 * @package Forminator
 */

if ( ! defined( 'ABSPATH' ) ) {
	die();
}

/**
 * Class Forminator_Text
 *
 * @since 1.6
 */
class Forminator_Textarea extends Forminator_Field {

	/**
	 * Name
	 *
	 * @var string
	 */
	public $name = '';

	/**
	 * Slug
	 *
	 * @var string
	 */
	public $slug = 'textarea';

	/**
	 * Type
	 *
	 * @var string
	 */
	public $type = 'textarea';

	/**
	 * Position
	 *
	 * @var int
	 */
	public $position = 7;

	/**
	 * Options
	 *
	 * @var array
	 */
	public $options = array();

	/**
	 * Is input
	 *
	 * @var bool
	 */
	public $is_input = true;

	/**
	 * Has counter
	 *
	 * @var bool
	 */
	public $has_counter = true;

	/**
	 * Icon
	 *
	 * @var string
	 */
	public $icon = 'sui-icon-blog';

	/**
	 * Forminator_Text constructor.
	 *
	 * @since 1.0
	 */
	public function __construct() {
		parent::__construct();

		$this->name = esc_html__( 'Textarea', 'forminator' );
		$required   = __( 'This field is required. Please enter text.', 'forminator' );

		self::$default_required_messages[ $this->type ] = $required;
	}

	/**
	 * Field defaults
	 *
	 * @since 1.0
	 * @return array
	 */
	public function defaults() {
		return array(
			'input_type'  => 'line',
			'limit_type'  => 'characters',
			'field_label' => esc_html__( 'Text', 'forminator' ),
		);
	}

	/**
	 * Autofill Setting
	 *
	 * @since 1.0.5
	 *
	 * @param array $settings Settings.
	 *
	 * @return array
	 */
	public function autofill_settings( $settings = array() ) {
		$providers = apply_filters( 'forminator_field_' . $this->slug . '_autofill', array(), $this->slug );

		$autofill_settings = array(
			'text' => array(
				'values' => forminator_build_autofill_providers( $providers ),
			),
		);

		return $autofill_settings;
	}

	/**
	 * Field front-end markup
	 *
	 * @since 1.0
	 *
	 * @param array                  $field Field.
	 * @param Forminator_Render_Form $views_obj Forminator_Render_Form object.
	 * @param array                  $draft_value Draft value.
	 *
	 * @return mixed
	 */
	public function markup( $field, $views_obj, $draft_value = null ) {

		$settings            = $views_obj->model->settings;
		$use_ajax_load       = ! empty( $settings['use_ajax_load'] ) || ! empty( $field['parent_group'] );
		$this->field         = $field;
		$this->form_settings = $settings;
		$descr_position      = self::get_description_position( $field, $settings );

		$html           = '';
		$name           = self::get_property( 'element_id', $field );
		$id             = self::get_field_id( $name );
		$required       = self::get_property( 'required', $field, false, 'bool' );
		$default        = esc_html( self::get_property( 'default', $field, false ) );
		$placeholder    = $this->sanitize_value( self::get_property( 'placeholder', $field ) );
		$label          = esc_html( self::get_property( 'field_label', $field, '' ) );
		$description    = self::get_property( 'description', $field, '' );
		$limit          = self::get_property( 'limit', $field, 0, 'num' );
		$limit_type     = self::get_property( 'limit_type', $field, '', 'str' );
		$editor_type    = self::get_property( 'editor-type', $field, false, 'bool' );
		$default_height = self::get_property( 'default-height', $field, 140 );
		$is_wp_editor   = true === $editor_type && ! $use_ajax_load;
		$desc_id        = $is_wp_editor ? 'forminator-wp-editor-' . $id . '-description' : $id . '-description';

		$autofill_markup = $this->get_element_autofill_markup_attr( self::get_property( 'element_id', $field ) );

		$textarea = array(
			'name'        => $name,
			'placeholder' => $placeholder,
			'id'          => $id,
			'class'       => 'forminator-textarea',
			'rows'        => 6,
			'style'       => 'min-height:' . $default_height . 'px;',
		);

		// Add maxlength attribute if limit_type is characters.
		if ( ! empty( $limit ) && 'characters' === $limit_type ) {
			$textarea['maxlength'] = $limit;
		}

		if ( isset( $draft_value['value'] ) ) {

			$default = wp_kses_post( $draft_value['value'] );

		} elseif ( $this->has_prefill( $field ) ) {
			// We have pre-fill parameter, use its value or $value.
			$default = $this->get_prefill( $field, $default );
		}

		if ( ! empty( $default ) ) {
			$textarea['content'] = $default;
		} elseif ( isset( $autofill_markup['value'] ) ) {
			$textarea['content'] = $autofill_markup['value'];
			unset( $autofill_markup['value'] );
		}

		// Add required class if form ajax load is enabled.
		if ( $required && true === $editor_type && $use_ajax_load ) {
			$textarea['class'] .= esc_attr( ' do-validate forminator-wp-editor-required' );
		}

		if ( ! empty( $description ) ) {
			$textarea['aria-describedby'] = $id . '-description';
		}

		$textarea = array_merge( $textarea, $autofill_markup );

		$description_block = '';
		if ( ! empty( $description ) || ( ! empty( $limit ) && ! empty( $limit_type ) ) ) {
			$description_block .= sprintf( '<span id="%s" class="forminator-description">', esc_attr( $desc_id ) );

			if ( ! empty( $description ) ) {
				$description_block .= self::convert_markdown( self::esc_description( $description, $name ) );
			}

			// Counter.
			if ( ( ! empty( $limit ) && ! empty( $limit_type ) ) ) {
				$description_block .= sprintf( '<span data-limit="%s" data-type="%s" data-editor="%s">0 / %s</span>', $limit, $limit_type, $editor_type, $limit );
			}
			$description_block .= '</span>';
		}
		$description_block = apply_filters( 'forminator_field_description', $description_block, $description, $id, $descr_position );

		$html .= '<div class="forminator-field">';

		$html .= self::get_field_label( $label, $id, $required );

		if ( 'above' === $descr_position ) {
			$html .= $description_block;
		}

		if ( $is_wp_editor ) {
			$html .= self::create_wp_editor( $textarea, '', '', $required, $default_height, $limit );
		} else {
			$html .= self::create_textarea( $textarea, '', '', $required );
			if ( true === $editor_type && $use_ajax_load ) {
				$args   = self::get_tinymce_args( $id );
				$script = '<script>wp.editor.initialize("' . esc_attr( $id ) . '", ' . $args . ');</script>';
				// if it's inside group field and 'Load form using AJAX' option is disabled.
				if ( empty( $settings['use_ajax_load'] ) && ! empty( $field['parent_group'] ) ) {
					// wrap into document ready.
					$script = str_replace( array( '<script>', '</script>' ), array( '<script>jQuery(function() {', '});</script>' ), $script );
				}
				$html .= $script;

				Forminator_CForm_Front::$load_wp_enqueue_editor = true;
			}
		}

		if ( 'above' !== $descr_position ) {
			$html .= $description_block;
		}
		$html .= '</div>';

		return apply_filters( 'forminator_field_text_markup', $html, $field );
	}

	/**
	 * Return field inline validation rules
	 *
	 * @since 1.0
	 * @return string
	 */
	public function get_validation_rules() {
		$field       = $this->field;
		$id          = self::get_property( 'element_id', $field );
		$is_required = $this->is_required( $field );
		$has_limit   = $this->has_limit( $field );
		$rules       = '';

		if ( ! isset( $field['limit'] ) ) {
			$field['limit'] = 0;
		}

		if ( $is_required || $has_limit ) {
			$rules = '"' . $this->get_id( $field ) . '": {';
			if ( $is_required ) {
				$rules .= '"required": true,';
			}

			if ( $has_limit ) {
				if ( isset( $field['limit_type'] ) && 'characters' === trim( $field['limit_type'] ) ) {
					$rules .= '"maxlength": ' . $field['limit'] . ',';
				} else {
					$rules .= '"maxwords": ' . $field['limit'] . ',';
				}
			}
			$rules .= '},';
		}

		return apply_filters( 'forminator_field_text_validation_rules', $rules, $id, $field );
	}

	/**
	 * Return field inline validation errors
	 *
	 * @since 1.0
	 * @return string
	 */
	public function get_validation_messages() {
		$field            = $this->field;
		$id               = self::get_property( 'element_id', $field );
		$is_required      = $this->is_required( $field );
		$has_limit        = $this->has_limit( $field );
		$messages         = '';
		$required_message = self::get_property( 'required_message', $field, self::$default_required_messages[ $this->type ] );

		if ( $is_required || $has_limit ) {
			$messages .= '"' . $this->get_id( $field ) . '": {';

			if ( $is_required ) {
				$required_error = apply_filters(
					'forminator_text_field_required_validation_message',
					$required_message,
					$id,
					$field
				);
				$messages      .= '"required": "' . forminator_addcslashes( $required_error ) . '",' . "\n";
			}

			if ( $has_limit ) {
				if ( isset( $field['limit_type'] ) && 'characters' === trim( $field['limit_type'] ) ) {
					$max_length_error = apply_filters(
						'forminator_text_field_characters_validation_message',
						esc_html__( 'You exceeded the allowed amount of characters. Please check again.', 'forminator' ),
						$id,
						$field
					);
					$messages        .= '"maxlength": "' . forminator_addcslashes( $max_length_error ) . '",' . "\n";
				} else {
					$max_words_error = apply_filters(
						'forminator_text_field_words_validation_message',
						esc_html__( 'You exceeded the allowed amount of words. Please check again.', 'forminator' ),
						$id,
						$field
					);
					$messages       .= '"maxwords": "' . forminator_addcslashes( $max_words_error ) . '",' . "\n";
				}
			}

			$messages .= '},';
		}

		return $messages;
	}

	/**
	 * Field back-end validation
	 *
	 * @since 1.0
	 *
	 * @param array        $field Field.
	 * @param array|string $data Data.
	 */
	public function validate( $field, $data ) {
		$id   = self::get_property( 'element_id', $field );
		$data = html_entity_decode( $data );

		if ( ! isset( $field['limit'] ) ) {
			$field['limit'] = 0;
		}

		if ( $this->is_required( $field ) ) {
			$required_message = self::get_property( 'required_message', $field, esc_html( self::$default_required_messages[ $this->type ] ) );
			if ( empty( $data ) ) {
				$this->validation_message[ $id ] = apply_filters(
					'forminator_text_field_required_validation_message',
					$required_message,
					$id,
					$field
				);
			}
		}
		if ( $this->has_limit( $field ) ) {
			// Remove newline character.
			$data = str_replace( "\r", '', $data );
			if ( ( isset( $field['limit_type'] ) && 'characters' === trim( $field['limit_type'] ) ) && ( mb_strlen( wp_strip_all_tags( $data ) ) > $field['limit'] ) ) {
				$this->validation_message[ $id ] = apply_filters(
					'forminator_text_field_characters_validation_message',
					esc_html__( 'You exceeded the allowed amount of characters. Please check again.', 'forminator' ),
					$id,
					$field
				);
			} elseif ( ( isset( $field['limit_type'] ) && 'words' === trim( $field['limit_type'] ) ) ) {
				if ( ! empty( $data ) && ! empty( $field['editor-type'] ) && 'true' === $field['editor-type'] ) {
					$data = wp_strip_all_tags( $data );
				}
				$words = preg_split( '/[\s]+/', $data );
				if ( is_array( $words ) && count( $words ) > $field['limit'] ) {
					$this->validation_message[ $id ] = apply_filters(
						'forminator_text_field_words_validation_message',
						esc_html__( 'You exceeded the allowed amount of words. Please check again.', 'forminator' ),
						$id,
						$field
					);
				}
			}
		}
	}

	/**
	 * Sanitization was improved and moved to class-core.php - sanitize_array
	 *
	 * Sanitize data
	 *
	 * @since 1.0.2
	 *
	 * @param array        $field Field.
	 * @param array|string $data - the data to be sanitized.
	 *
	 * @return array|string $data - the data after sanitization
	 */
	public function sanitize( $field, $data ) {
		$original_data = $data;
		$editor_type   = self::get_property( 'editor-type', $field, false, 'bool' );
		// Sanitize.
		if ( true === $editor_type ) {
			$data = wp_kses_post( $data );
		} else {
			$data = forminator_sanitize_textarea( $data );
		}

		return apply_filters( 'forminator_field_text_sanitize', $data, $field, $original_data );
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
20 Aug 2025 10.03 AM
tdhomesa / tdhomesa
0755
address.php
27.192 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
calculation.php
8.076 KB
3 Mar 2025 4.08 PM
tdhomesa / tdhomesa
0644
captcha.php
9.159 KB
14 Apr 2025 2.55 PM
tdhomesa / tdhomesa
0644
consent.php
6.063 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
currency.php
12.942 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
custom.php
7.134 KB
3 Mar 2025 4.08 PM
tdhomesa / tdhomesa
0644
date.php
44.481 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
email.php
14.274 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
gdprcheckbox.php
5.305 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
group.php
7.063 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
hidden.php
4.893 KB
14 Apr 2025 2.55 PM
tdhomesa / tdhomesa
0644
html.php
2.412 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
multivalue.php
16.597 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
name.php
22.025 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
number.php
13.171 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
page-break.php
1.479 KB
24 Dec 2024 8.31 PM
tdhomesa / tdhomesa
0644
password.php
18.627 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
paypal.php
13.385 KB
24 Dec 2024 8.31 PM
tdhomesa / tdhomesa
0644
phone.php
15.398 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
postdata.php
35.895 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
radio.php
17.066 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
rating.php
5.614 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
section.php
3.119 KB
24 Dec 2024 8.31 PM
tdhomesa / tdhomesa
0644
select.php
23.246 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
slider.php
14.014 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
stripe-payment-element.php
3.98 KB
14 Apr 2025 2.55 PM
tdhomesa / tdhomesa
0644
stripe.php
45.783 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
text.php
11.221 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
textarea.php
11.608 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
time.php
28.9 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
upload.php
33.154 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
website.php
8.129 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF