Файл: contao-3.5.8/system/modules/core/widgets/TextField.php
Строк: 93
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
namespace Contao;
/**
* Provide methods to handle text fields.
*
* @property integer $maxlength
* @property boolean $mandatory
* @property string $placeholder
* @property boolean $multiple
* @property boolean $hideInput
* @property integer $size
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class TextField extends Widget
{
/**
* Submit user input
* @var boolean
*/
protected $blnSubmitInput = true;
/**
* Add a for attribute
* @var boolean
*/
protected $blnForAttribute = true;
/**
* Template
* @var string
*/
protected $strTemplate = 'be_widget';
/**
* Disable the for attribute if the "multiple" option is set
*
* @param array $arrAttributes
*/
public function __construct($arrAttributes=null)
{
parent::__construct($arrAttributes);
if ($this->multiple)
{
$this->blnForAttribute = false;
}
}
/**
* Add specific attributes
*
* @param string $strKey
* @param mixed $varValue
*/
public function __set($strKey, $varValue)
{
switch ($strKey)
{
case 'maxlength':
if ($varValue > 0)
{
$this->arrAttributes['maxlength'] = $varValue;
}
break;
case 'mandatory':
if ($varValue)
{
$this->arrAttributes['required'] = 'required';
}
else
{
unset($this->arrAttributes['required']);
}
parent::__set($strKey, $varValue);
break;
case 'placeholder':
$this->arrAttributes['placeholder'] = $varValue;
break;
default:
parent::__set($strKey, $varValue);
break;
}
}
/**
* Trim values
*
* @param mixed $varInput
*
* @return mixed
*/
protected function validator($varInput)
{
if (is_array($varInput))
{
return parent::validator($varInput);
}
if (!$this->multiple)
{
// Convert to Punycode format (see #5571)
if ($this->rgxp == 'url')
{
$varInput = Idna::encodeUrl($varInput);
}
elseif ($this->rgxp == 'email' || $this->rgxp == 'friendly')
{
$varInput = Idna::encodeEmail($varInput);
}
}
return parent::validator($varInput);
}
/**
* Generate the widget and return it as string
*
* @return string
*/
public function generate()
{
$strType = $this->hideInput ? 'password' : 'text';
if (!$this->multiple)
{
// Hide the Punycode format (see #2750)
if ($this->rgxp == 'url' || $this->rgxp == 'email' || $this->rgxp == 'friendly')
{
$this->varValue = Idna::decode($this->varValue);
}
return sprintf('<input type="%s" name="%s" id="ctrl_%s" class="tl_text%s" value="%s"%s onfocus="Backend.getScrollOffset()">%s',
$strType,
$this->strName,
$this->strId,
(($this->strClass != '') ? ' ' . $this->strClass : ''),
specialchars($this->varValue),
$this->getAttributes(),
$this->wizard);
}
// Return if field size is missing
if (!$this->size)
{
return '';
}
if (!is_array($this->varValue))
{
$this->varValue = array($this->varValue);
}
$arrFields = array();
for ($i=0; $i<$this->size; $i++)
{
$arrFields[] = sprintf('<input type="%s" name="%s[]" id="ctrl_%s" class="tl_text_%s" value="%s"%s onfocus="Backend.getScrollOffset()">',
$strType,
$this->strName,
$this->strId.'_'.$i,
$this->size,
specialchars(@$this->varValue[$i]), // see #4979
$this->getAttributes());
}
return sprintf('<div id="ctrl_%s"%s>%s</div>%s',
$this->strId,
(($this->strClass != '') ? ' class="' . $this->strClass . '"' : ''),
implode(' ', $arrFields),
$this->wizard);
}
}