mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
9e98f127f2
svn://svn.silverstripe.com/silverstripe/modules/sapphire/branches/2.2.0-mesq ........ r47613 | ischommer | 2008-01-04 19:14:58 +1300 (Fri, 04 Jan 2008) | 1 line adding tabIndex capabilities, switching HTML-rendering to createTag() ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@52199 467b73ca-7a2a-4603-9d3b-597d59a354a9
19 lines
440 B
PHP
Executable File
19 lines
440 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @package forms
|
|
* @subpackage fields-formattedinput
|
|
*/
|
|
|
|
/**
|
|
* Duplicate of {@link PasswordField}.
|
|
* @package forms
|
|
* @subpackage fields-formattedinput Use {@link PasswordField}
|
|
*/
|
|
class EncryptField extends TextField {
|
|
function Field() {
|
|
return "<input class=\"text\" type=\"password\" id=\"" . $this->id() . "\" name=\"{$this->name}\" value=\"" . $this->attrValue() . "\"" . $this->getTabIndexHTML() . " />";
|
|
}
|
|
}
|
|
|
|
?>
|