File "textarea.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/admin/helpers/src/checkin/paxfield/type/textarea.php
File size: 1.3 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @package VikBooking
* @subpackage core
* @author Alessio Gaggii - E4J s.r.l.
* @copyright Copyright (C) 2022 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!');
/**
* Defines the handler for a pax field of type "textarea".
*
* @since 1.15.0 (J) - 1.5.0 (WP)
*/
final class VBOCheckinPaxfieldTypeTextarea extends VBOCheckinPaxfieldType
{
/**
* Renders the current pax field HTML.
*
* @return string the HTML string to render the field.
*/
public function render()
{
// get the field unique ID
$field_id = $this->getFieldIdAttr();
// get the guest number
$guest_number = $this->field->getGuestNumber();
// get the field class attribute
$pax_field_class = $this->getFieldClassAttr();
// get field name attribute
$name = $this->getFieldNameAttr();
// get the field value attribute
$value = htmlspecialchars($this->getFieldValueAttr());
// compose HTML content for the field
$field_html = <<<HTML
<textarea id="$field_id" data-gind="$guest_number" class="$pax_field_class" name="$name">$value</textarea>
HTML;
// return the necessary HTML string to display the field
return $field_html;
}
}