PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/oligap/www/wp-content/themes/woodmart/inc/admin/options/controls/editor/
Server: Linux cloud.virginhosting.lk 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
IP: 128.140.68.198
Choose File :

Url:
Dir : /home/oligap/www/wp-content/themes/woodmart/inc/admin/options/controls/editor/class-editor.php

<?php
/**
 * CSS and JS code editor.
 *
 * @package xts
 */

namespace XTS\Options\Controls;

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

use XTS\Options\Field;

/**
 * Editor class.
 */
class Editor extends Field {
	/**
	 * Displays the field control HTML.
	 *
	 * @since 1.0.0
	 *
	 * @return void.
	 */
	public function render_control() {
		wp_enqueue_code_editor( array() );
		?>
			<textarea data-language="<?php echo esc_attr( $this->args['language'] ); ?>" name="<?php echo esc_attr( $this->get_input_name() ); ?>"><?php echo $this->get_field_value(); // phpcs:ignore ?></textarea>
		<?php
	}
}