# sellkit/1.2.3/includes/elementor/modules/checkout/fields/textarea.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 1.2.3. 48 lines.

- Page: https://pluginprobe.com/plugins/sellkit/1.2.3/code/includes/elementor/modules/checkout/fields/textarea.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.2.3/raw/includes/elementor/modules/checkout/fields/textarea.php
- Modified: 2022-06-30T09:22:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sellkit/1.2.3/code/includes/elementor/modules/checkout/fields/textarea.php#L10-L20`.

```php
<?php

namespace Sellkit\Elementor\Modules\Checkout\Fields;

defined( 'ABSPATH' ) || die();

use Sellkit\Elementor\Modules\Checkout\Fields\Base;

/**
 * Class textarea.
 *
 * @since 1.1.0
 */
class Textarea extends Base {
	/**
	 * Type of field.
	 *
	 * @return string
	 * @since 1.1.0
	 */
	public function type() {
		return 'textarea';
	}

	/**
	 * Customized html per field.
	 *
	 * @param string $field field html string.
	 * @param array  $args checkout fields options.
	 * @param string $key key of field.
	 * @return void
	 * @since 1.1.0
	 */
	public function field( $field, $args, $key ) {
		?>
			<p id="<?php echo $key; ?>_field" data-priority="">
				<span class="woocommerce-input-wrapper">
					<textarea
						name="<?php echo esc_attr( $key ); ?>"
						id="<?php echo esc_attr( $key ); ?>"
						placeholder="<?php echo ( array_key_exists( 'label', $args ) ) ? esc_attr( $args['label'] ) : ''; ?>"
					><?php echo ( array_key_exists( 'default', $args ) ) ? esc_html( $args['default'] ) : ''; ?></textarea>
				</span>
			</p>
		<?php
	}
}

```
