File "text.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/libraries/adapter/form/fields/text.php
File size: 1.2 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @package VikWP - Libraries
* @subpackage adapter.form
* @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!');
jimport('joomla.form.formfield');
/**
* Form field class to handle text fields.
*
* @since 10.0
*/
class JFormFieldText extends JFormField
{
/**
* The layout identifier for text fields.
*
* @var string
* @since 10.1.20
*/
protected $layoutId = 'html.form.fields.text';
/**
* @override
* Method to get the data to be passed to the layout for rendering.
*
* @return array An associative array of display data.
*/
public function getLayoutData()
{
$data = array();
$data['name'] = $this->name;
$data['class'] = $this->class;
$data['id'] = $this->id;
$data['value'] = is_null($this->value) ? $this->default : $this->value;
$data['required'] = $this->required === "true" || $this->required === true ? true : false;
$data['readonly'] = $this->readonly === "true" || $this->readonly === true ? true : false;
return $data;
}
}