*/ class PasswordField extends AbstractTextField { public function __construct($form, $name) { parent::__construct($form, 'password', $name, ''); } public function setValue($newValue) { //No value need to be written return $this; } }