HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: //home/salamatk/.trash/woodmart1/inc/admin/modules/options/controls/textarea/class-textarea.php
<?php
/**
 * Textarea with text or HTML control.
 *
 * @package xts
 */

namespace XTS\Admin\Modules\Options\Controls;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Direct access not allowed.
}

use XTS\Admin\Modules\Options\Field;

/**
 * Textarea field control.
 */
class Textarea extends Field {


	/**
	 * Displays the field control HTML.
	 *
	 * @since 1.0.0
	 *
	 * @return void.
	 */
	public function render_control() {
		if ( ! $this->args['wysiwyg'] ) :
			?>
				<textarea placeholder="<?php echo esc_attr( $this->_get_placeholder() ); ?>" class="xts-textarea-<?php echo esc_attr( ( $this->args['wysiwyg'] ) ? 'wysiwyg' : 'plain' ); ?>" name="<?php echo esc_attr( $this->get_input_name() ); ?>"><?php echo esc_textarea( $this->get_field_value() ); ?></textarea>
			<?php
		else :
			wp_editor(
				$this->get_field_value(),
				'text-' . $this->args['id'],
				array(
					'textarea_name' => $this->get_input_name(),
					'textarea_rows' => 8,
				)
			);
		endif;
	}

	/**
	 * Get textarea's placeholder text from arguments.
	 *
	 * @since 1.0.0
	 */
	private function _get_placeholder() {
		return isset( $this->args['placeholder'] ) ? $this->args['placeholder'] : '';
	}
}