uawdijnntqw1x1x1
IP : 216.73.216.84
Hostname : webm003.cluster107.gra.hosting.ovh.net
Kernel : Linux webm003.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
opticamezl
/
www
/
newok
/
07d6c
/
..
/
..
/
newok
/
cli
/
..
/
libraries
/
xef
/
fields
/
text.php
/
/
<?php /** * * @package Expose * @version 3.0 * @author ThemeXpert http://www.themexpert.com * @copyright Copyright (C) 2010 - 2011 ThemeXpert * @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3 * **/ // Ensure this file is being included by a parent file defined('_JEXEC') or die( 'Restricted access' ); jimport('joomla.html.html'); jimport('joomla.form.formfield'); class JFormFieldText extends JFormField { protected $type = 'Text'; protected function getInput() { $output = NULL; // Initialize some field attributes. $size = $this->element['size'] ? ' size="'.(int) $this->element['size'].'"' : ''; $maxLength = $this->element['maxlength'] ? ' maxlength="'.(int) $this->element['maxlength'].'"' : ''; $class = $this->element['class']; $readonly = ((string) $this->element['readonly'] == 'true') ? ' readonly="readonly"' : ''; $disabled = ((string) $this->element['disabled'] == 'true') ? ' disabled="disabled"' : ''; $prepend = ($this->element['prepend'] != NULL) ? '<span class="add-on">'. JText::_($this->element['prepend']). '</span>' : ''; $append = ($this->element['append'] != NULL) ? '<span class="add-on">'.JText::_($this->element['append']).'</span>' : ''; if($prepend) $extra_class = 'input-prepend'; elseif($append) $extra_class = 'input-append'; else $extra_class = ''; $wrapstart = '<div class="field-wrap clearfix '.$class. $extra_class .'">'; $wrapend = '</div>'; $input = '<input type="text" name="'.$this->name.'" id="'.$this->id.'"' . ' value="'.htmlspecialchars($this->value, ENT_COMPAT, 'UTF-8').'"' . $size.$disabled.$readonly.$maxLength.'/>'; $output = $wrapstart . $prepend . $input . $append . $wrapend; return $output; } }
/home/opticamezl/www/newok/07d6c/../../newok/cli/../libraries/xef/fields/text.php