Introduced PasswordField.class.php to keep things simple.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index e4d5865..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 {