2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2015-04-27 04:10:42 +02:00
|
|
|
|
2016-08-19 00:51:35 +02:00
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\Deprecation;
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-15 23:38:05 +02:00
|
|
|
* Password input field.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
class PasswordField extends TextField
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Controls the autocomplete attribute on the field.
|
|
|
|
*
|
|
|
|
* Setting it to false will set the attribute to "off", which will hint the browser
|
|
|
|
* to not cache the password and to not use any password managers.
|
|
|
|
*/
|
|
|
|
private static $autocomplete;
|
2013-06-11 23:09:51 +02:00
|
|
|
|
2017-05-08 07:21:51 +02:00
|
|
|
protected $inputType = 'password';
|
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* Returns an input field.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param null|string $title
|
|
|
|
* @param string $value
|
|
|
|
*/
|
|
|
|
public function __construct($name, $title = null, $value = '')
|
|
|
|
{
|
|
|
|
if (count(func_get_args()) > 3) {
|
|
|
|
Deprecation::notice(
|
|
|
|
'3.0',
|
|
|
|
'Use setMaxLength() instead of constructor arguments',
|
|
|
|
Deprecation::SCOPE_GLOBAL
|
|
|
|
);
|
|
|
|
}
|
2012-01-02 17:45:47 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
parent::__construct($name, $title, $value);
|
|
|
|
}
|
2007-09-15 23:38:05 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getAttributes()
|
|
|
|
{
|
2017-05-08 07:21:51 +02:00
|
|
|
$attributes = array();
|
2013-06-11 23:09:51 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
$autocomplete = $this->config()->get('autocomplete');
|
2015-04-27 04:10:42 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
if ($autocomplete) {
|
|
|
|
$attributes['autocomplete'] = 'on';
|
|
|
|
} else {
|
|
|
|
$attributes['autocomplete'] = 'off';
|
|
|
|
}
|
2013-06-11 23:09:51 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
return array_merge(
|
|
|
|
parent::getAttributes(),
|
|
|
|
$attributes
|
|
|
|
);
|
|
|
|
}
|
2007-09-15 23:38:05 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* Creates a read-only version of the field.
|
|
|
|
*
|
|
|
|
* @return FormField
|
|
|
|
*/
|
|
|
|
public function performReadonlyTransformation()
|
|
|
|
{
|
|
|
|
$field = $this->castedCopy('SilverStripe\\Forms\\ReadonlyField');
|
2015-04-27 04:10:42 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
$field->setValue('*****');
|
2015-04-27 04:10:42 +02:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
return $field;
|
|
|
|
}
|
2011-12-22 13:10:57 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function Type()
|
|
|
|
{
|
|
|
|
return 'text password';
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|