File "none.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/libraries/adapter/editor/classes/none.php
File size: 3.05 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/** 
 * @package     VikWP - Libraries
 * @subpackage  adapter.editor
 * @author      E4J s.r.l.
 * @copyright   Copyright (C) 2023 E4J s.r.l. All Rights Reserved.
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @link        https://vikwp.com
 */

// No direct access
defined('ABSPATH') or die('No script kiddies please!');

JLoader::import('adapter.editor.editor');

/**
 * Editor class to handle a simple textarea.
 *
 * @since 10.0
 */
class JEditorNone extends JEditor
{
	/**
	 * @override
	 * Renders the editor area.
	 *
	 * @param   string   $name     The control name.
	 * @param   string   $html     The contents of the text area.
	 * @param   string   $width    The width of the text area (px or %).
	 * @param   string   $height   The height of the text area (px or %).
	 * @param   integer  $col      The number of columns for the textarea.
	 * @param   integer  $row      The number of rows for the textarea.
	 * @param   boolean  $buttons  True and the editor buttons will be displayed.
	 * @param   string   $id       An optional ID for the textarea (@since 10.1.20).
	 * @param   array    $params   Associative array of editor parameters (@since 10.1.35).
	 *
	 * @return  string 	 The editor.
	 */
	protected function render($name, $html, $width, $height, $col, $row, $buttons, $id, $params)
	{
		// only add "px" to width and height if they are not given as a percentage
		if (is_numeric($width))
		{
			$width .= 'px';
		}

		if (is_numeric($height))
		{
			$height .= 'px';
		}

		?>
		<textarea
			name="<?php echo esc_attr($name); ?>"
			id="<?php echo esc_attr($id); ?>"
			rows="<?php echo esc_attr($row); ?>"
			cols="<?php echo esc_attr($col); ?>"
			style="width: <?php echo esc_attr($width); ?>; height: <?php echo esc_attr($height); ?>;"
			<?php echo !empty($params['readonly']) ? 'readonly' : ''; ?>
			<?php echo !empty($params['disabled']) ? 'disabled' : ''; ?>
		><?php echo htmlentities($html); ?></textarea>

		<?php

		/**
		 * Inject default editor instance within Joomla.editors pool.
		 *
		 * @since 10.1.17
		 */
		JFactory::getDocument()->addScriptDeclaration(
<<<JS
(function($) {
	'use strict';

	$(function() {
		Joomla.editors.instances['$id'] = {
			id: 	  '$id',
			getValue: function() {	
				return $('textarea#' + this.id).val();
			},
			setValue: function(text) {
				return $('textarea#' + this.id).val(text);
			},
			getSelection: function() {
				const textarea = $('textarea#' + this.id)[0];

				if (textarea.selectionStart || textarea.selectionStart === 0) {
			      // MOZILLA/NETSCAPE support
			      return textarea.value.substring(textarea.selectionStart, textarea.selectionEnd);
			    }

			    return textarea.value;
			},
			replaceSelection: function(text) {
				const textarea = $('textarea#' + this.id)[0];

				if (textarea.selectionStart || textarea.selectionStart === 0) {
					textarea.value = textarea.value.substring(0, textarea.selectionStart) + text + textarea.value.substring(textarea.selectionEnd, textarea.value.length);
				} else {
					textarea.value += text;
				}
			},
		};
	});
})(jQuery);
JS
		);
	}
}