X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/e1703495130c8ed88fe210f50a2a6b453b3c566b..076f64bf058fdda95d95428c95d3acfbbdf93448:/WEB-INF/lib/form/UploadFile.class.php diff --git a/WEB-INF/lib/form/UploadFile.class.php b/WEB-INF/lib/form/UploadFile.class.php index cfb67120..50e8aad5 100644 --- a/WEB-INF/lib/form/UploadFile.class.php +++ b/WEB-INF/lib/form/UploadFile.class.php @@ -29,30 +29,23 @@ import('form.FormElement'); class UploadFile extends FormElement { - var $mMaxSize = 100000; // 100kb // TODO: refactor this. - function __construct($name, $value = '') + var $maxSize = 8388608; // 8MB default max size. + + function __construct($name) { $this->class = 'UploadFile'; $this->name = $name; - $this->value = $value; } -// TODO: refactoring ongoing down from here. - function setMaxSize($value) { $this->mMaxSize = $value; } - function getMaxSize() { return $this->mMaxSize; } - - function getHtml() { + function setMaxSize($value) { $this->maxSize = $value; } - if ($this->id=="") $this->id = $this->name; - - $html = "\n\tmMaxSize."\"/>"; - $html .= "\n\tname\" id=\"$this->id\""; - - $html .= " type=\"file\""; - $html .= ">"; + function getHtml() { - return $html; - } + if ($this->id == '') $this->id = $this->name; + + $html = "\n\tmaxSize\">"; + $html .= "\n\tid\" name=\"$this->name\">"; + return $html; + } }