Some further refactoring in form classes.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index c9ffaae..044b3d6 100644 (file)
 // +----------------------------------------------------------------------+
 
 import('form.FormElement');
-       
+
 class TextField extends FormElement {
-    var $mPassword     = false;
-    var $class = 'TextField';
 
-       function __construct($name,$value="")
-       {
-               $this->name = $name;
-               $this->value = $value;
-       }
-       
-       function setAsPassword($name)   { $this->mPassword = $name;     }
-       function getAsPassword()        { return $this->mPassword; }
+  function __construct($name, $value = '')
+  {
+    $this->class = 'TextField';
+    $this->name = $name;
+    $this->value = $value;
+  }
 
+  // TODO: refactoring ongoing down from here.
        function getHtml() {
                if (!$this->isEnabled()) {
                        $html = "<input name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n";
@@ -48,8 +45,7 @@ class TextField extends FormElement {
                        
                    if ($this->id=="") $this->id = $this->name;
                    
-                       $html = "\n\t<input";
-                       $html .= ( $this->mPassword ? " type=\"password\"" : " type=\"text\"");
+                       $html = "\n\t<input type=\"text\"";
                        $html .= " name=\"$this->name\" id=\"$this->id\"";
                        
                        if ($this->size!="")