Introduced PasswordField.class.php to keep things simple.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index 82d6af2..b4b1c5d 100644 (file)
@@ -30,10 +30,11 @@ import('form.FormElement');
        
 class TextField extends FormElement {
     var $mPassword     = false;
-    var $cClassName            = "TextField";
+    //var $class = 'TextField';
 
        function __construct($name,$value="")
        {
+            $this->class = 'TextField';
                $this->name = $name;
                $this->value = $value;
        }
@@ -41,10 +42,8 @@ class TextField extends FormElement {
        function setAsPassword($name)   { $this->mPassword = $name;     }
        function getAsPassword()        { return $this->mPassword; }
 
-       function toStringControl()      {
-               if (!$this->isRenderable()) return "";
-           
-               if (!$this->isEnable()) {
+       function getHtml() {
+               if (!$this->isEnabled()) {
                        $html = "<input name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n";
                } else {
                        
@@ -57,8 +56,8 @@ class TextField extends FormElement {
                        if ($this->size!="")
                          $html .= " size=\"$this->size\"";
                          
-                       if ($this->mStyle!="")
-                          $html .= " style=\"$this->mStyle\"";
+                       if ($this->style!="")
+                          $html .= " style=\"$this->style\"";
                          
                        if ($this->max_length!="")
                           $html .= " maxlength=\"$this->max_length\"";