Some renaming.
[timetracker.git] / WEB-INF / lib / form / UploadFile.class.php
index ad3f21f..7e76d64 100644 (file)
 import('form.FormElement');
        
 class UploadFile extends FormElement {
-    var $mValue;
-    var $cClassName            = "UploadFile";
+    var $class = 'UploadFile';
     var $mMaxSize              = 100000;       // 100kb
 
-       function UploadFile($name,$value="")
+       function __construct($name,$value="")
        {
-               $this->mName                    = $name;
-               $this->mValue                   = $value;
+               $this->name = $name;
+               $this->value = $value;
        }
        
        function setMaxSize($value)     { $this->mMaxSize = $value;     }
        function getMaxSize()   { return $this->mMaxSize; }
        
-       function toStringControl()      {
-               if (!$this->isRenderable()) return "";
-           
-           if ($this->mId=="") $this->mId = $this->mName;
+       function toStringControl() {
+
+            if ($this->id=="") $this->id = $this->name;
            
                $html = "\n\t<input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"".$this->mMaxSize."\"/>";
                $html .= "\n\t<input";
-               $html .= " name=\"$this->mName\" id=\"$this->mId\"";
+               $html .= " name=\"$this->name\" id=\"$this->id\"";
                
                $html .= " type=\"file\"";
                $html .= ">";
-               
-               // only IE
-               /*$html = "<input type=\"file\" name=\"".$this->mName."\" id=\"".$this->mId."\" style=\"display: none;\">\n";
-               $html .= "<input type=\"text\" name=\"".$this->mName."file\">\n";
-               $html .= "<input type=\"button\" 
-                       style=\"text-align:center;\" onClick=\"".$this->mName.".click();".$this->mName."file.value=".$this->mName.".value;".$this->mName.".disabled=true;\"";
-               $html .= " value=\"".$this->getValue()."\">\n";
-               $html .= "<input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"".$this->mMaxSize."\"/>";*/
-               
-               
-               return $html;
+
+                return $html;
        }
 }