Файл: contao-3.5.8/system/modules/core/forms/FormPassword.php
Строк: 164
<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
namespace Contao;
/**
* Class FormPassword
*
* @property boolean $mandatory
* @property integer $maxlength
* @property string $placeholder
* @property string $confirmLabel
*
* @author Leo Feyer <https://github.com/leofeyer>
*/
class FormPassword extends Widget
{
/**
* Submit user input
*
* @var boolean
*/
protected $blnSubmitInput = true;
/**
* Add a for attribute
*
* @var boolean
*/
protected $blnForAttribute = true;
/**
* Template
*
* @var string
*/
protected $strTemplate = 'form_password';
/**
* The CSS class prefix
*
* @var string
*/
protected $strPrefix = 'widget widget-password';
/**
* Always decode entities
*
* @param array $arrAttributes An optional attributes array
*/
public function __construct($arrAttributes=null)
{
parent::__construct($arrAttributes);
$this->decodeEntities = true;
}
/**
* Add specific attributes
*
* @param string $strKey The attribute name
* @param mixed $varValue The attribute value
*/
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;
}
}
/**
* Validate input and set value
*
* @param mixed $varInput The user input
*
* @return mixed The validated user input
*/
protected function validator($varInput)
{
$this->blnSubmitInput = false;
if (!strlen($varInput) && (strlen($this->varValue) || !$this->mandatory))
{
return '';
}
if (utf8_strlen($varInput) < Config::get('minPasswordLength'))
{
$this->addError(sprintf($GLOBALS['TL_LANG']['ERR']['passwordLength'], Config::get('minPasswordLength')));
}
if ($varInput != $this->getPost($this->strName . '_confirm'))
{
$this->addError($GLOBALS['TL_LANG']['ERR']['passwordMatch']);
}
$varInput = parent::validator($varInput);
if (!$this->hasErrors())
{
$this->blnSubmitInput = true;
return Encryption::hash($varInput);
}
return '';
}
/**
* Parse the template file and return it as string
*
* @param array $arrAttributes An optional attributes array
*
* @return string The template markup
*/
public function parse($arrAttributes=null)
{
$this->confirmLabel = sprintf($GLOBALS['TL_LANG']['MSC']['confirmation'], $this->strLabel);
return parent::parse($arrAttributes);
}
/**
* Generate the widget and return it as string
*
* @return string The widget markup
*/
public function generate()
{
return sprintf('<input type="password" name="%s" id="ctrl_%s" class="text password%s" value=""%s%s',
$this->strName,
$this->strId,
(($this->strClass != '') ? ' ' . $this->strClass : ''),
$this->getAttributes(),
$this->strTagEnding) . $this->addSubmit();
}
/**
* Generate the label of the confirmation field and return it as string
*
* @return string The confirmation label markup
*/
public function generateConfirmationLabel()
{
return sprintf('<label for="ctrl_%s_confirm" class="confirm%s">%s%s%s</label>',
$this->strId,
(($this->strClass != '') ? ' ' . $this->strClass : ''),
($this->mandatory ? '<span class="invisible">'.$GLOBALS['TL_LANG']['MSC']['mandatory'].' </span>' : ''),
sprintf($GLOBALS['TL_LANG']['MSC']['confirmation'], $this->strLabel),
($this->mandatory ? '<span class="mandatory">*</span>' : ''));
}
/**
* Generate the widget and return it as string
*
* @return string The confirmation field markup
*/
public function generateConfirmation()
{
return sprintf('<input type="password" name="%s_confirm" id="ctrl_%s_confirm" class="text password confirm%s" value=""%s%s',
$this->strName,
$this->strId,
(($this->strClass != '') ? ' ' . $this->strClass : ''),
$this->getAttributes(),
$this->strTagEnding);
}
}