X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/9a23a8c0a51b7ec38a96f525484134f3cb85dc7e..1cf228c258ba8a8950b1a55bc25b93768bf50184:/WEB-INF/lib/form/Hidden.class.php
diff --git a/WEB-INF/lib/form/Hidden.class.php b/WEB-INF/lib/form/Hidden.class.php
index 660870b4..6e59bc8e 100644
--- a/WEB-INF/lib/form/Hidden.class.php
+++ b/WEB-INF/lib/form/Hidden.class.php
@@ -27,28 +27,19 @@
// +----------------------------------------------------------------------+
import('form.FormElement');
-
+
class Hidden extends FormElement {
- var $mValue;
- var $cClassName = "Hidden";
- function Hidden($name,$value="")
- {
- $this->mName = $name;
- $this->mValue = $value;
- }
+ function __construct($name) {
+ $this->class = 'Hidden';
+ $this->name = $name;
+ }
+
+ function getHtml() {
+ if ($this->id == '') $this->id = $this->name;
- function toStringControl() {
-
- if ($this->mId=="") $this->mId = $this->mName;
-
- $html = "\n\tmName\" id=\"$this->mId\"";
-
- $html .= " value=\"".$this->getValue()."\"";
- $html .= ">";
-
- return $html;
- }
+ $html = "\n\tid\" name=\"$this->name\"";
+ $html.= ' value="'.$this->getValue().'">';
+ return $html;
+ }
}
-?>
\ No newline at end of file