Some renaming.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index e1259d6..e4d5865 100644 (file)
 import('form.FormElement');
        
 class TextField extends FormElement {
-    var $mValue;
     var $mPassword     = false;
     var $cClassName            = "TextField";
 
        function __construct($name,$value="")
        {
-               $this->name                     = $name;
-               $this->mValue                   = $value;
+               $this->name = $name;
+               $this->value = $value;
        }
        
        function setAsPassword($name)   { $this->mPassword = $name;     }
@@ -55,17 +54,17 @@ class TextField extends FormElement {
                        $html .= ( $this->mPassword ? " type=\"password\"" : " type=\"text\"");
                        $html .= " name=\"$this->name\" id=\"$this->id\"";
                        
-                       if ($this->mSize!="")
-                         $html .= " size=\"$this->mSize\"";
+                       if ($this->size!="")
+                         $html .= " size=\"$this->size\"";
                          
-                       if ($this->mStyle!="")
-                          $html .= " style=\"$this->mStyle\"";
+                       if ($this->style!="")
+                          $html .= " style=\"$this->style\"";
                          
-                       if ($this->mMaxLength!="")
-                          $html .= " maxlength=\"$this->mMaxLength\"";
+                       if ($this->max_length!="")
+                          $html .= " maxlength=\"$this->max_length\"";
                           
-                       if ($this->mOnChange!="")
-                          $html .= " onchange=\"$this->mOnChange\"";
+                       if ($this->on_change!="")
+                          $html .= " onchange=\"$this->on_change\"";
 
                        $html .= " value=\"".htmlspecialchars($this->getValue())."\"";
                        $html .= ">";