]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/Hidden.class.php
Further refactoring of the FormElement class to simplify things.
[timetracker.git] / WEB-INF / lib / form / Hidden.class.php
index 0105de15b5df1366e57cd118adb5b797dbc48a7c..57ed9aa2440f2b2a3e9a90bb593f74b18ee16e56 100644 (file)
 import('form.FormElement');
        
 class Hidden extends FormElement {
-    var $mValue;
-    var $cClassName    = "Hidden";
+    var $class = 'Hidden';
 
        function __construct($name,$value="")
        {
-               $this->name                     = $name;
-               $this->mValue                   = $value;
+               $this->name = $name;
+               $this->value = $value;
        }
 
        function toStringControl()      {