X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/60d2288b7fca6caf0f5d9d3eee972f040eb24fb0..bb92f78d67fee6fd5b005e8196ccbf618c76518b:/WEB-INF/lib/form/TextField.class.php?ds=inline
diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php
index b4b1c5d6..4904e248 100644
--- a/WEB-INF/lib/form/TextField.class.php
+++ b/WEB-INF/lib/form/TextField.class.php
@@ -27,21 +27,16 @@
// +----------------------------------------------------------------------+
import('form.FormElement');
-
+
class TextField extends FormElement {
- var $mPassword = false;
- //var $class = 'TextField';
- function __construct($name,$value="")
- {
- $this->class = 'TextField';
- $this->name = $name;
- $this->value = $value;
- }
-
- function setAsPassword($name) { $this->mPassword = $name; }
- function getAsPassword() { return $this->mPassword; }
+ function __construct($name)
+ {
+ $this->class = 'TextField';
+ $this->name = $name;
+ }
+ // TODO: refactoring ongoing down from here.
function getHtml() {
if (!$this->isEnabled()) {
$html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n";
@@ -49,8 +44,7 @@ class TextField extends FormElement {
if ($this->id=="") $this->id = $this->name;
- $html = "\n\tmPassword ? " type=\"password\"" : " type=\"text\"");
+ $html = "\n\tname\" id=\"$this->id\"";
if ($this->size!="")