]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/TextField.class.php
Refactoring - renamed a few things.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index 82d6af2087307507164cebafb797fec7de0fc8c5..20b7fc6eb9dbcfa39b82001f8e8f77f75c490629 100644 (file)
@@ -41,10 +41,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 toStringControl() {
+               if (!$this->isEnabled()) {
                        $html = "<input name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n";
                } else {
                        
@@ -57,8 +55,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\"";